26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const NotificationMaxAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMaxAggregateInputType>;
|
|
export declare const NotificationMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
type: z.ZodOptional<z.ZodLiteral<true>>;
|
|
message: z.ZodOptional<z.ZodLiteral<true>>;
|
|
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
read: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
message?: true | undefined;
|
|
type?: true | undefined;
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
read?: true | undefined;
|
|
}, {
|
|
message?: true | undefined;
|
|
type?: true | undefined;
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
read?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=NotificationMaxAggregateInput.schema.d.ts.map
|