Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/953a7ee8f5fe909c919d54a35c9c515e572ee81e891aff6603c2e1825a9bf272a6a8f5a6f5b47f1ab1b0f0e0eb8450489e20bbafaf9cfa771ea64241ab1878
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

13 lines
596 B
Text

export declare const FALSY_ENV_VALUES: Set<string>;
export declare const TRUTHY_ENV_VALUES: Set<string>;
export type StrictBoolCast = {
strict: true;
};
export type LooseBoolCast = {
strict?: false;
};
export type BoolCastOptions = StrictBoolCast | LooseBoolCast;
export declare function envToBool(value: unknown, options?: LooseBoolCast): boolean;
export declare function envToBool(value: unknown, options: StrictBoolCast): boolean | null;
export declare function envToBool(value: unknown, options?: BoolCastOptions): boolean | null;
//# sourceMappingURL=envToBool.d.ts.map