Variable AdaptOptionsSchemaConst
AdaptOptionsSchema: ZodObject<
{
adapter: ZodDefault<
ZodOptional<ZodEnum<["caddyfile", "json", "yaml", "nginx", "apache"]>>,
>;
config: ZodString;
},
"strip",
ZodTypeAny,
{
adapter: "caddyfile"
| "json"
| "yaml"
| "nginx"
| "apache";
config: string;
},
{
adapter?: "caddyfile"
| "json"
| "yaml"
| "nginx"
| "apache";
config: string;
},
> = ...
Adapt configuration options schema