29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const StaffMinAggregateInputObjectSchema: z.ZodType<Prisma.StaffMinAggregateInputType>;
|
|
export declare const StaffMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
email: z.ZodOptional<z.ZodLiteral<true>>;
|
|
role: z.ZodOptional<z.ZodLiteral<true>>;
|
|
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
name?: true | undefined;
|
|
email?: true | undefined;
|
|
role?: true | undefined;
|
|
phone?: true | undefined;
|
|
}, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
name?: true | undefined;
|
|
email?: true | undefined;
|
|
role?: true | undefined;
|
|
phone?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=StaffMinAggregateInput.schema.d.ts.map
|