Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/d4ac7a6ebe8dcbb8a8f2c1056f8b18a551791e8f2f33ff86a1fa3a8744eef0489d99c8cd1b37c495dd353625800332b66c16df7972fa509e16653f6837c679
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
No EOL
582 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