AK-21/Graphite-Industrial-Intelligence
0
1import type { Dialect } from "./column-builder.cjs";2import type { RunnableQuery } from "./runnable-query.cjs";3export type BatchItem<TDialect extends Dialect = Dialect> = RunnableQuery<any, TDialect>;4export type BatchResponse<T extends BatchItem[] | readonly BatchItem[]> = {5 [K in keyof T]: T[K]['_']['result'];6};7 