diff --git a/app/web/src/utils/script/prisma-extend.ts b/app/web/src/utils/script/prisma-extend.ts index 5cd12487..829f9b3d 100644 --- a/app/web/src/utils/script/prisma-extend.ts +++ b/app/web/src/utils/script/prisma-extend.ts @@ -2,8 +2,11 @@ export const prismaExtendType = `\ { _batch: { update: ( - table: string, - batch: { data: any, where: any }[] + batch: { + table: string, + data: any, + where: any + }[] ) => Promise; }; _schema: {