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>
12 lines
No EOL
351 B
Text
12 lines
No EOL
351 B
Text
export type SdkSource = 'npm' | 'cdn' | 'loader' | 'aws-lambda-layer';
|
|
/**
|
|
* Figures out if we're building a browser bundle.
|
|
*
|
|
* @returns true if this is a browser bundle build.
|
|
*/
|
|
export declare function isBrowserBundle(): boolean;
|
|
/**
|
|
* Get source of SDK.
|
|
*/
|
|
export declare function getSDKSource(): SdkSource;
|
|
//# sourceMappingURL=env.d.ts.map |