Files
klz-cables.com/.pnpm-store/v10/files/be/cd7f7866da0cfd635d6ae9613f7323e752c2df0c5070c3e36c8ed8a3e805e83757c17f5f0403ed7303c67ad8f988e75d1ab49ede47f940643d8c77d0c3100a
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

11 lines
370 B
Plaintext

import { entityKind } from "./entity.cjs";
import type { AnyColumn } from "./column.cjs";
import type { Table } from "./table.cjs";
export declare abstract class PrimaryKey {
readonly table: Table;
readonly columns: AnyColumn[];
static readonly [entityKind]: string;
protected $brand: 'PrimaryKey';
constructor(table: Table, columns: AnyColumn[]);
}