Rocky_Mountain_Vending/.pnpm-store/v10/files/52/a556a86caa26726215ebd149b3a093c8fcc76d5bb176d970ccbb103375baec0de834c2b52cba9d58d9e7aa23e51eb927989cae8fb08a2bf56cde22cea49905
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

21 lines
628 B
Text

import { EventEmitter } from "node:events";
import type nodeWorkerThreads from "node:worker_threads";
export declare class Worker extends EventEmitter implements nodeWorkerThreads.Worker {
stdin: null;
stdout;
stderr;
threadId: number;
performance: {
eventLoopUtilization: () => {
idle: number
active: number
utilization: number
}
};
postMessage(_value: any, _transferList?: readonly nodeWorkerThreads.TransferListItem[] | undefined);
postMessageToThread(_threadId: unknown, _value: unknown, _transferList?: unknown, _timeout?: unknown): Promise<void>;
ref();
unref();
terminate();
getHeapSnapshot();
}