@it_kyryl/arbitrage_admin_schema
Version:
Schema for arbitrage admin panel
13 lines • 365 B
TypeScript
import { z } from "zod";
export declare const dbApiAccessDTO: z.ZodObject<{
id: z.ZodNumber;
token: z.ZodNullable<z.ZodString>;
}, "strip", z.ZodTypeAny, {
id: number;
token: string | null;
}, {
id: number;
token: string | null;
}>;
export type DbApiAccessDtoT = z.infer<typeof dbApiAccessDTO>;
//# sourceMappingURL=apiAccess.entity.d.ts.map