Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/3f8c965bed633b9cc76fc7c19dceb29f66c1e704a314ab12a3a2576117a0cb0315dc538406213c8e033b42820fdbe14bfb5c848cfcd4f7a16019b91b4aca78
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

22 lines
No EOL
714 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { WebWorker } from '../api/WebWorker.js';
import type { CDPSession } from '../puppeteer-core.js';
import type { DedicatedWorkerRealm, SharedWorkerRealm } from './core/Realm.js';
import type { BidiFrame } from './Frame.js';
import { BidiWorkerRealm } from './Realm.js';
/**
* @internal
*/
export declare class BidiWebWorker extends WebWorker {
#private;
static from(frame: BidiFrame, realm: DedicatedWorkerRealm | SharedWorkerRealm): BidiWebWorker;
private constructor();
get frame(): BidiFrame;
mainRealm(): BidiWorkerRealm;
get client(): CDPSession;
}
//# sourceMappingURL=WebWorker.d.ts.map