Prisma Generation client (npm script concurrently)

This commit is contained in:
2022-09-08 14:39:04 +02:00
parent 6f5cc1642a
commit 1bcf265aec
4 changed files with 40 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ export class User {
}
export abstract class IQuery {
abstract users(): Nullable<Nullable<User>[]> | Promise<Nullable<Nullable<User>[]>>;
abstract users(): Nullable<User>[] | Promise<Nullable<User>[]>;
abstract user(id: string): Nullable<User> | Promise<Nullable<User>>;
}