37 lines
986 B
TypeScript
37 lines
986 B
TypeScript
import * as z from 'zod';
|
|
export declare const StaffModelSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
name: z.ZodString;
|
|
email: z.ZodNullable<z.ZodString>;
|
|
role: z.ZodString;
|
|
phone: z.ZodNullable<z.ZodString>;
|
|
createdAt: z.ZodDate;
|
|
user: z.ZodNullable<z.ZodUnknown>;
|
|
appointments: z.ZodArray<z.ZodUnknown, "many">;
|
|
claims: z.ZodArray<z.ZodUnknown, "many">;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
claims: unknown[];
|
|
name: string;
|
|
email: string | null;
|
|
role: string;
|
|
phone: string | null;
|
|
appointments: unknown[];
|
|
user?: unknown;
|
|
}, {
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
claims: unknown[];
|
|
name: string;
|
|
email: string | null;
|
|
role: string;
|
|
phone: string | null;
|
|
appointments: unknown[];
|
|
user?: unknown;
|
|
}>;
|
|
export type StaffPureType = z.infer<typeof StaffModelSchema>;
|
|
//# sourceMappingURL=Staff.pure.d.ts.map
|