Files
klz-cables.com/.pnpm-store/v10/files/75/959e463f2c722ddacb2c3f3423617a05fb5ff5d21d37cd29fa3e7656532b1545f03f6ee51b40a2b593c2aeab57f03033c01c9216f10f468aba7a15ec344956
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

9 lines
467 B
Plaintext

import type { GelColumn } from "./columns/index.js";
import type { Placeholder, SQL, SQLWrapper } from "../sql/sql.js";
export * from "../sql/expressions/index.js";
export declare function concat(column: GelColumn | SQL.Aliased, value: string | Placeholder | SQLWrapper): SQL;
export declare function substring(column: GelColumn | SQL.Aliased, { from, for: _for }: {
from?: number | Placeholder | SQLWrapper;
for?: number | Placeholder | SQLWrapper;
}): SQL;