9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
/**
|
|
* Interface of the server (auto-generated code)
|
|
*/
|
|
import { z as zod } from "zod";
|
|
|
|
|
|
export const ZodInteger = zod.number().safe();
|
|
export type Integer = zod.infer<typeof ZodInteger>;
|