CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
selection-proxy.d.ts10 linesDownload Raw Back to drizzle-orm
1import { entityKind } from "./entity.js";2import { View } from "./sql/sql.js";3import { Subquery } from "./subquery.js";4export declare class SelectionProxyHandler<T extends Subquery | Record<string, unknown> | View> implements ProxyHandler<Subquery | Record<string, unknown> | View> {5    static readonly [entityKind]: string;6    private config;7    constructor(config: SelectionProxyHandler<T>['config']);8    get(subquery: T, prop: string | symbol): any;9}10