CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
query-builder.d.cts12 linesDownload Raw Back to query-builders
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