Files
klz-cables.com/.pnpm-store/v10/files/8c/6586427dab75fd3226d48ab20442f73409d051150b2dcdc623dca23abc57999039f8453eb4723ff7d8736a22e50f0636cf1190b5e9685288c4cfb730b8eac6
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
473 B
Plaintext

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