Files
klz-cables.com/.pnpm-store/v10/files/b6/eda1d7721aa1585b23524b60e264942b1c52b8494b0316e965e4491f6e09350cc66eac242959a994c8d3be55bfc91d730f2bf8e96ff392a7e129e771bfca38
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.js";
import type { SingleStoreDialectConfig } from "../dialect.js";
import { SingleStoreDialect } from "../dialect.js";
import type { WithBuilder } from "../subquery.js";
import { WithSubquery } from "../../subquery.js";
import { SingleStoreSelectBuilder } from "./select.js";
import type { SelectedFields } from "./select.types.js";
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;
}