Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/DatabaseBackupCreateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

14 lines
728 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const DatabaseBackupCreateInputObjectSchema: z.ZodType<Prisma.DatabaseBackupCreateInput>;
export declare const DatabaseBackupCreateInputObjectZodSchema: z.ZodObject<{
createdAt: z.ZodOptional<z.ZodDate>;
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutBackupsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutBackupsInput>>;
}, "strict", z.ZodTypeAny, {
user: Prisma.UserCreateNestedOneWithoutBackupsInput;
createdAt?: Date | undefined;
}, {
user: Prisma.UserCreateNestedOneWithoutBackupsInput;
createdAt?: Date | undefined;
}>;
//# sourceMappingURL=DatabaseBackupCreateInput.schema.d.ts.map