From 736d28cc1fddaca9eda761b3b6748426f026651a Mon Sep 17 00:00:00 2001 From: Rizky Date: Wed, 13 Mar 2024 15:15:51 +0700 Subject: [PATCH] wip fix --- app/web/src/utils/script/prisma-extend.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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: {