TenantAtlas/apps/platform/.pnpm-store/v10/files/6a/7bcca44a69e83482fc9bd01d43f42739c91a2fd5876597759faef67468091352aa7bb40529f2c5a39ffea1a570672068049662d1258f8e04ced0e01a1ec887
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
322 B
Plaintext

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