Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/23a4d4d6f24548b1b21a6bfbc438b23788ff44401028c21136d9d5e3dcda735d339dfdd9ce39e8299a620348184106dddf1c11a9e75d345f68c148a4b82bed
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

23 lines
No EOL
634 B
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { JSHandle } from '../api/JSHandle.js';
import type { PuppeteerInjectedUtil } from '../injected/injected.js';
/**
* @internal
*/
export interface PuppeteerUtilWrapper {
puppeteerUtil: Promise<JSHandle<PuppeteerInjectedUtil>>;
}
/**
* @internal
*/
export declare class LazyArg<T, Context = PuppeteerUtilWrapper> {
#private;
static create: <T_1>(get: (context: PuppeteerUtilWrapper) => Promise<T_1> | T_1) => T_1;
private constructor();
get(context: Context): Promise<T>;
}
//# sourceMappingURL=LazyArg.d.ts.map