14 lines
728 B
TypeScript
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
|