14 lines
535 B
TypeScript
14 lines
535 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimFileCreateWithoutClaimInputObjectSchema: z.ZodType<Prisma.ClaimFileCreateWithoutClaimInput>;
|
|
export declare const ClaimFileCreateWithoutClaimInputObjectZodSchema: z.ZodObject<{
|
|
filename: z.ZodString;
|
|
mimeType: z.ZodString;
|
|
}, "strict", z.ZodTypeAny, {
|
|
filename: string;
|
|
mimeType: string;
|
|
}, {
|
|
filename: string;
|
|
mimeType: string;
|
|
}>;
|
|
//# sourceMappingURL=ClaimFileCreateWithoutClaimInput.schema.d.ts.map
|