Files
klz-cables.com/.pnpm-store/v10/files/9a/87df0d3bc6cebc2baf390ba83d29a983152dbfe5bb5bfca40f1620a9ee00d4ff7af3a4a2cb9f8ac2ca83ea630be22cceb8ce21e1fd2d533ebdbf42c58dd8b1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

10 lines
464 B
Plaintext

import { entityKind } from "./entity.cjs";
import { View } from "./sql/sql.cjs";
import { Subquery } from "./subquery.cjs";
export declare class SelectionProxyHandler<T extends Subquery | Record<string, unknown> | View> implements ProxyHandler<Subquery | Record<string, unknown> | View> {
static readonly [entityKind]: string;
private config;
constructor(config: SelectionProxyHandler<T>['config']);
get(subquery: T, prop: string | symbol): any;
}