TenantAtlas/apps/platform/.pnpm-store/v10/files/31/d146875031a98f79fef1bec25245b0144be89a72d290529ede7904e4863ab01a08925cadba115adeec6d4c8f31e49109588b91f71ad6e89eb148b74cc8a808
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

7 lines
320 B
Plaintext

import type { Dialect } from "./column-builder.js";
import type { RunnableQuery } from "./runnable-query.js";
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'];
};