Files
klz-cables.com/.pnpm-store/v10/files/cf/a66a2ed4d1f5520909c16e9de6d6693f678dde62bd5a8f06368ad45ec31b650b89a4237144a3412ddad2ad36990aed396f7be6e45f178204cb66c5dc075537
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
336 B
Plaintext

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