Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

configJsonSchema

const configJsonSchema: z.ZodObject<{
presets: z.ZodArray<z.ZodObject<{
name: z.ZodString;
title: z.ZodString;
description: z.ZodString;
base: z.ZodString;
style: z.ZodString;
baseColor: z.ZodString;
theme: z.ZodString;
iconLibrary: z.ZodString;
font: z.ZodString;
menuAccent: z.ZodEnum<["subtle", "bold"]>;
menuColor: z.ZodEnum<["default", "inverted"]>;
radius: z.ZodString;
}
, "strip", z.ZodTypeAny, {
style: string;
baseColor: string;
iconLibrary: string;
rtl: boolean;
menuColor: "default" | "inverted";
menuAccent: "bold" | "subtle";
theme: string;
name: string;
title: string;
description: string;
font: string;
base: string;
radius: string;
}
, {
style: string;
baseColor: string;
iconLibrary: string;
menuColor: "default" | "inverted";
menuAccent: "bold" | "subtle";
theme: string;
name: string;
title: string;
description: string;
font: string;
base: string;
radius: string;
rtl?: boolean | undefined;
}
>
, "many">
;
}
, "strip", z.ZodTypeAny, {
presets: {
style: string;
baseColor: string;
iconLibrary: string;
rtl: boolean;
menuColor: "default" | "inverted";
menuAccent: "bold" | "subtle";
theme: string;
name: string;
title: string;
description: string;
font: string;
base: string;
radius: string;
}
[]
;
}
, {
presets: {
style: string;
baseColor: string;
iconLibrary: string;
menuColor: "default" | "inverted";
menuAccent: "bold" | "subtle";
theme: string;
name: string;
title: string;
description: string;
font: string;
base: string;
radius: string;
rtl?: boolean | undefined;
}
[]
;
}
>
;