9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
/**
|
|
* Interface of the server (auto-generated code)
|
|
*/
|
|
import { z as zod } from "zod";
|
|
|
|
|
|
export const ZodLocalDate = zod.string().date();
|
|
export type LocalDate = zod.infer<typeof ZodLocalDate>;
|