Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/84a13bdfbbb20b2bd359dd3d0bb9ce26cbdaf8bb64ebd80afaa5785c69cba8d5cec568e46c5ca3848cdf3193ae2e8f0666468c09e4d533c585931aaab384de
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

12 lines
522 B
Text

import { EventEmitter } from "node:events";
import type nodeWorkerThreads from "node:worker_threads";
export declare class MessagePort extends EventEmitter implements nodeWorkerThreads.MessagePort {
close();
postMessage(value: any, transferList?: readonly nodeWorkerThreads.TransferListItem[] | undefined);
ref();
unref();
start();
addEventListener(type: string, listener: (...args: any[]) => void): void;
removeEventListener(type: string, listener: (...args: any[]) => void): void;
dispatchEvent(event: Event);
}