initial commit
This commit is contained in:
26
packages/db/shared/schemas/countUser.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/countUser.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const UserCountSchema: z.ZodType<Prisma.UserCountArgs>;
|
||||
export declare const UserCountZodSchema: z.ZodObject<{
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.UserWhereUniqueInput, z.ZodTypeDef, Prisma.UserWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
select: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.UserCountAggregateInputType, z.ZodTypeDef, Prisma.UserCountAggregateInputType>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
select?: true | Prisma.UserCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
}, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
select?: true | Prisma.UserCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=countUser.schema.d.ts.map
|
||||
Reference in New Issue
Block a user