28 lines
789 B
TypeScript
28 lines
789 B
TypeScript
import * as z from 'zod';
|
|
export declare const NotificationInputSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
type: z.ZodEnum<["BACKUP", "CLAIM", "PAYMENT", "ETC"]>;
|
|
message: z.ZodString;
|
|
createdAt: z.ZodDate;
|
|
read: z.ZodBoolean;
|
|
user: z.ZodUnknown;
|
|
}, "strict", z.ZodTypeAny, {
|
|
message: string;
|
|
type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC";
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
read: boolean;
|
|
user?: unknown;
|
|
}, {
|
|
message: string;
|
|
type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC";
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
read: boolean;
|
|
user?: unknown;
|
|
}>;
|
|
export type NotificationInputType = z.infer<typeof NotificationInputSchema>;
|
|
//# sourceMappingURL=Notification.input.d.ts.map
|