@limlabs/limo
Version:
Infrastructure as Code generator
6 lines (5 loc) • 396 B
TypeScript
import z from "zod";
export type NullableCliOption = "true" | "false" | "unknown";
export declare const cliBoolean: () => z.ZodEffects<z.ZodEnum<["true", "false", "unknown"]>, "true" | "false" | "unknown", "true" | "false" | "unknown">;
export declare const cliInteger: () => z.ZodEffects<z.ZodString, string, string>;
export declare const cliEnum: (options: any) => z.ZodEnum<z.Writeable<any>>;