26 lines
1.2 KiB
TypeScript
26 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const NotificationMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMinOrderByAggregateInput>;
|
|
export declare const NotificationMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
type: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
message: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
read: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
message?: "asc" | "desc" | undefined;
|
|
type?: "asc" | "desc" | undefined;
|
|
createdAt?: "asc" | "desc" | undefined;
|
|
id?: "asc" | "desc" | undefined;
|
|
userId?: "asc" | "desc" | undefined;
|
|
read?: "asc" | "desc" | undefined;
|
|
}, {
|
|
message?: "asc" | "desc" | undefined;
|
|
type?: "asc" | "desc" | undefined;
|
|
createdAt?: "asc" | "desc" | undefined;
|
|
id?: "asc" | "desc" | undefined;
|
|
userId?: "asc" | "desc" | undefined;
|
|
read?: "asc" | "desc" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=NotificationMinOrderByAggregateInput.schema.d.ts.map
|