initial commit
This commit is contained in:
14
packages/db/shared/schemas/objects/SortOrderInput.schema.d.ts
vendored
Normal file
14
packages/db/shared/schemas/objects/SortOrderInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const SortOrderInputObjectSchema: z.ZodType<Prisma.SortOrderInput>;
|
||||
export declare const SortOrderInputObjectZodSchema: z.ZodObject<{
|
||||
sort: z.ZodEnum<["asc", "desc"]>;
|
||||
nulls: z.ZodOptional<z.ZodEnum<["first", "last"]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
sort: "asc" | "desc";
|
||||
nulls?: "first" | "last" | undefined;
|
||||
}, {
|
||||
sort: "asc" | "desc";
|
||||
nulls?: "first" | "last" | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=SortOrderInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user