Files
klz-cables.com/.pnpm-store/v10/files/bf/6d321e13231bd8395ae50ff3027ed421078a6cf0673a462fb39e592180293f2b68a7ad02113d291388d8d9768ede43fe3793d076850f0588ce18d4e2b1a920
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

5 lines
339 B
Plaintext

import type { BuildAliasTable } from "./query-builders/select.types.cjs";
import type { SQLiteTable } from "./table.cjs";
import type { SQLiteViewBase } from "./view-base.cjs";
export declare function alias<TTable extends SQLiteTable | SQLiteViewBase, TAlias extends string>(table: TTable, alias: TAlias): BuildAliasTable<TTable, TAlias>;