9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
/**
|
|
* Interface of the server (auto-generated code)
|
|
*/
|
|
import { z as zod } from "zod";
|
|
|
|
|
|
export const ZodIsoDate = zod.string().datetime({ precision: 3 });
|
|
export type IsoDate = zod.infer<typeof ZodIsoDate>;
|