selection-proxy.d.ts 461 B

123456789
  1. import { entityKind } from "./entity.js";
  2. import { View } from "./sql/sql.js";
  3. import { Subquery } from "./subquery.js";
  4. export 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. }