TenantAtlas/apps/platform/.pnpm-store/v10/files/de/cf7955f81dd34916cafd689f059c349f55f50dfafad44fd768c4d73fdcfdbf9b53c9e242c9a978cac5de63a49b024f431b0e056abc6bf2d45d61df5aabe05b
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

12 lines
398 B
Plaintext

import { entityKind } from "../entity.cjs";
import type { SQL, SQLWrapper } from "../sql/index.cjs";
export declare abstract class TypedQueryBuilder<TSelection, TResult = unknown, TConfig = unknown> implements SQLWrapper {
static readonly [entityKind]: string;
_: {
selectedFields: TSelection;
result: TResult;
config?: TConfig;
};
abstract getSQL(): SQL;
}