Files
DentalManagementMH05/packages/db/shared/schemas/variants/pure/BackupDestination.pure.d.ts

25 lines
650 B
TypeScript

import * as z from 'zod';
export declare const BackupDestinationModelSchema: z.ZodObject<{
id: z.ZodNumber;
userId: z.ZodNumber;
path: z.ZodString;
isActive: z.ZodBoolean;
createdAt: z.ZodDate;
user: z.ZodUnknown;
}, "strict", z.ZodTypeAny, {
path: string;
id: number;
createdAt: Date;
userId: number;
isActive: boolean;
user?: unknown;
}, {
path: string;
id: number;
createdAt: Date;
userId: number;
isActive: boolean;
user?: unknown;
}>;
export type BackupDestinationPureType = z.infer<typeof BackupDestinationModelSchema>;
//# sourceMappingURL=BackupDestination.pure.d.ts.map