CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
batch.d.cts7 linesDownload Raw Back to drizzle-orm
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