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