Rocky_Mountain_Vending/.pnpm-store/v10/files/bb/6f535a92cb33a7c0fc87b406965a6cb326c5cec10d35a95beece97808eb01ec045ae1035fa6a00deb2076184e41e84408b0810b5f6264996d4e74fda41070b
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

14 lines
No EOL
517 B
Text

/**
* Bind the callback and only invoke the callback once regardless how many times `BindOnceFuture.call` is invoked.
*/
export declare class BindOnceFuture<R, This = unknown, T extends (this: This, ...args: unknown[]) => R = () => R> {
private _callback;
private _that;
private _isCalled;
private _deferred;
constructor(_callback: T, _that: This);
get isCalled(): boolean;
get promise(): Promise<R>;
call(...args: Parameters<T>): Promise<R>;
}
//# sourceMappingURL=callback.d.ts.map