Files
klz-cables.com/.pnpm-store/v10/files/e0/d4ac7a6ebe8dcbb8a8f2c1056f8b18a551791e8f2f33ff86a1fa3a8744eef0489d99c8cd1b37c495dd353625800332b66c16df7972fa509e16653f6837c679
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

13 lines
582 B
Plaintext

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