Files
klz-cables.com/.pnpm-store/v10/files/8d/23615f999fcebfbedaee2cf88e97316c29858fe63ac56da8ec0f657db8373203b5bf4044461d2e33efdb1dcf5ca06df4970d3d76c648cf2d5681a7e54a9c75
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

30 lines
1.5 KiB
Plaintext

import { entityKind } from "../../entity.cjs";
import type { SingleStoreDialectConfig } from "../dialect.cjs";
import { SingleStoreDialect } from "../dialect.cjs";
import type { WithBuilder } from "../subquery.cjs";
import { WithSubquery } from "../../subquery.cjs";
import { SingleStoreSelectBuilder } from "./select.cjs";
import type { SelectedFields } from "./select.types.cjs";
export declare class QueryBuilder {
static readonly [entityKind]: string;
private dialect;
private dialectConfig;
constructor(dialect?: SingleStoreDialect | SingleStoreDialectConfig);
$with: WithBuilder;
with(...queries: WithSubquery[]): {
select: {
(): SingleStoreSelectBuilder<undefined, never, "qb">;
<TSelection extends SelectedFields>(fields: TSelection): SingleStoreSelectBuilder<TSelection, never, "qb">;
};
selectDistinct: {
(): SingleStoreSelectBuilder<undefined, never, "qb">;
<TSelection extends SelectedFields>(fields: TSelection): SingleStoreSelectBuilder<TSelection, never, "qb">;
};
};
select(): SingleStoreSelectBuilder<undefined, never, 'qb'>;
select<TSelection extends SelectedFields>(fields: TSelection): SingleStoreSelectBuilder<TSelection, never, 'qb'>;
selectDistinct(): SingleStoreSelectBuilder<undefined, never, 'qb'>;
selectDistinct<TSelection extends SelectedFields>(fields: TSelection): SingleStoreSelectBuilder<TSelection, never, 'qb'>;
private getDialect;
}