This commit is contained in:
Rizky 2024-03-13 15:15:51 +07:00
parent b7f4fd84e3
commit 736d28cc1f
1 changed files with 5 additions and 2 deletions

View File

@ -2,8 +2,11 @@ export const prismaExtendType = `\
{
_batch: {
update: (
table: string,
batch: { data: any, where: any }[]
batch: {
table: string,
data: any,
where: any
}[]
) => Promise<void>;
};
_schema: {