2
0
Files

9 lines
189 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import { z } from "zod";
export const ZToggleInputSchema = z.object({
slug: z.string(),
enabled: z.boolean(),
});
export type TToggleInputSchema = z.infer<typeof ZToggleInputSchema>;