Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/7fddc4615097785ab13b90a89aad0dafd49ea6984561c8917a7674c041508358c37e2e0697b398fe04dfdc987388e2580312ee328046a59024da12a62c586e
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

19 lines
No EOL
728 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Awaitable } from '../common/types.js';
import type { BidiFrame } from './Frame.js';
/**
* @internal
*/
export declare class ExposableFunction<Args extends unknown[], Ret> {
#private;
static from<Args extends unknown[], Ret>(frame: BidiFrame, name: string, apply: (...args: Args) => Awaitable<Ret>, isolate?: boolean): Promise<ExposableFunction<Args, Ret>>;
readonly name: string;
constructor(frame: BidiFrame, name: string, apply: (...args: Args) => Awaitable<Ret>, isolate?: boolean);
[Symbol.dispose](): void;
[Symbol.asyncDispose](): Promise<void>;
}
//# sourceMappingURL=ExposedFunction.d.ts.map