20 lines
793 B
TypeScript
20 lines
793 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const NpiProviderUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.NpiProviderUncheckedCreateWithoutUserInput>;
|
|
export declare const NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
npiNumber: z.ZodString;
|
|
providerName: z.ZodString;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
npiNumber: string;
|
|
providerName: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
}, {
|
|
npiNumber: string;
|
|
providerName: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
}>;
|
|
//# sourceMappingURL=NpiProviderUncheckedCreateWithoutUserInput.schema.d.ts.map
|