Rocky_Mountain_Vending/.pnpm-store/v10/files/20/1b0bced743ac878c909088ec6dcc7f7d2d55f151a9a061f34b6fdd94f59807a464e79aca99bbbea968d962aabec3e518bec85979e9a6d225ed65554634bdae
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

34 lines
No EOL
816 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { WebWorker } from '../api/WebWorker.js';
import { UnsupportedOperation } from '../common/Errors.js';
import { BidiWorkerRealm } from './Realm.js';
/**
* @internal
*/
export class BidiWebWorker extends WebWorker {
static from(frame, realm) {
const worker = new BidiWebWorker(frame, realm);
return worker;
}
#frame;
#realm;
constructor(frame, realm) {
super(realm.origin);
this.#frame = frame;
this.#realm = BidiWorkerRealm.from(realm, this);
}
get frame() {
return this.#frame;
}
mainRealm() {
return this.#realm;
}
get client() {
throw new UnsupportedOperation();
}
}
//# sourceMappingURL=WebWorker.js.map