17 lines
665 B
TypeScript
17 lines
665 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimFileUncheckedCreateWithoutClaimInputObjectSchema: z.ZodType<Prisma.ClaimFileUncheckedCreateWithoutClaimInput>;
|
|
export declare const ClaimFileUncheckedCreateWithoutClaimInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
filename: z.ZodString;
|
|
mimeType: z.ZodString;
|
|
}, "strict", z.ZodTypeAny, {
|
|
filename: string;
|
|
mimeType: string;
|
|
id?: number | undefined;
|
|
}, {
|
|
filename: string;
|
|
mimeType: string;
|
|
id?: number | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ClaimFileUncheckedCreateWithoutClaimInput.schema.d.ts.map
|