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

registryItemTailwindSchema

const registryItemTailwindSchema: z.ZodObject<{
config: z.ZodOptional<z.ZodObject<{
content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}
, "strip", z.ZodTypeAny, {
content?: string[] | undefined;
theme?: Record<string, any> | undefined;
plugins?: string[] | undefined;
}
, {
content?: string[] | undefined;
theme?: Record<string, any> | undefined;
plugins?: string[] | undefined;
}
>
>
;
}
, "strip", z.ZodTypeAny, {
config?: {
content?: string[] | undefined;
theme?: Record<string, any> | undefined;
plugins?: string[] | undefined;
}
| undefined;
}
, {
config?: {
content?: string[] | undefined;
theme?: Record<string, any> | undefined;
plugins?: string[] | undefined;
}
| undefined;
}
>
;