Files
Camilou.fr/VUEJS/myapp/node_modules/drizzle-orm/query-builders/query-builder.d.cts
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

12 lines
398 B
TypeScript

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