Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/858e025b45591c23d2b74b5d6bb07268a0135a511236f39ba664e8b051b4aa5b38e2df43423c3d91342054dd9addbfaab69f6f2531d7edd35869e16cf36844
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

38 lines
No EOL
989 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BidiWebWorker = void 0;
/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
const WebWorker_js_1 = require("../api/WebWorker.js");
const Errors_js_1 = require("../common/Errors.js");
const Realm_js_1 = require("./Realm.js");
/**
* @internal
*/
class BidiWebWorker extends WebWorker_js_1.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 = Realm_js_1.BidiWorkerRealm.from(realm, this);
}
get frame() {
return this.#frame;
}
mainRealm() {
return this.#realm;
}
get client() {
throw new Errors_js_1.UnsupportedOperation();
}
}
exports.BidiWebWorker = BidiWebWorker;
//# sourceMappingURL=WebWorker.js.map