Variable CliConfigSchemaConst
CliConfigSchema: ZodObject<
{
port: ZodDefault<ZodNumber>;
upstream: ZodString;
db: ZodOptional<ZodString>;
logLevel: ZodDefault<
ZodEnum<["fatal", "error", "warn", "info", "debug", "trace"]>,
>;
},
"strip",
ZodTypeAny,
{
port: number;
upstream: string;
db?: string;
logLevel: "fatal"
| "error"
| "warn"
| "info"
| "debug"
| "trace";
},
{
port?: number;
upstream: string;
db?: string;
logLevel?: "fatal"
| "error"
| "warn"
| "info"
| "debug"
| "trace";
},
> = ...
CLI configuration schema for validation.