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']; };