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>
12 lines
522 B
Text
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);
|
|
}
|