AK-21/Graphite-Industrial-Intelligence
0
1import { entityKind } from "../entity.cjs";2import type { SQL, SQLWrapper } from "../sql/index.cjs";3export declare abstract class TypedQueryBuilder<TSelection, TResult = unknown, TConfig = unknown> implements SQLWrapper {4 static readonly [entityKind]: string;5 _: {6 selectedFields: TSelection;7 result: TResult;8 config?: TConfig;9 };10 abstract getSQL(): SQL;11}12 