Files
klz-cables.com/.pnpm-store/v10/files/3d/4c3ba97842a03df2f480f66298fce7aa77b15a92484b1aef9919bc47339c2cd7b7b34d5b09832d3e562ee1f7da22b72119a2a4dde0061d9cf02636dcbb897d
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
323 B
Plaintext

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