Spaces:
Sleeping
Sleeping
File size: 322 Bytes
6491ad4 | 1 2 3 4 5 6 7 | import type { Dialect } from "./column-builder.cjs";
import type { RunnableQuery } from "./runnable-query.cjs";
export type BatchItem<TDialect extends Dialect = Dialect> = RunnableQuery<any, TDialect>;
export type BatchResponse<T extends BatchItem[] | readonly BatchItem[]> = {
[K in keyof T]: T[K]['_']['result'];
};
|