/** * Interface of the server (auto-generated code) */ import { z as zod } from "zod"; export const Zodint = zod.object({ }); export type int = zod.infer; export function isint(data: any): data is int { try { Zodint.parse(data); return true; } catch (e: any) { console.log(`Fail to parse data type='Zodint' error=${e}`); return false; } } export const ZodintWrite = Zodint.partial(); export type intWrite = zod.infer; export function isintWrite(data: any): data is intWrite { try { ZodintWrite.parse(data); return true; } catch (e: any) { console.log(`Fail to parse data type='ZodintWrite' error=${e}`); return false; } }