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