TenantAtlas/apps/platform/.pnpm-store/v10/files/43/5a827603e229548ef121f9ee8881a5967ca6f0d122c0f3c92a6370e6978037065f197f49fcf41ed843bd6bf05e0409f8e26967173f16685d6180df40477e0a
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
396 B
Plaintext

import { entityKind } from "../entity.js";
import type { SQL, SQLWrapper } from "../sql/index.js";
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;
}