/opt/canhelp/node_modules/drizzle-orm
Edit: /opt/canhelp/node_modules/drizzle-orm/batch.d.ts (320B)
import type { Dialect } from "./column-builder.js";
import type { RunnableQuery } from "./runnable-query.js";
export type BatchItem
= RunnableQuery;
export type BatchResponse = {
[K in keyof T]: T[K]['_']['result'];
};