Files
klz-cables.com/.pnpm-store/v10/files/2a/589be1718b82b266aed2e0ee5fc4faa6d927f1654f3a61c4deb3b28ba60a47a662a89d9b7f99a5648983b62152bba039a8284afb71dce3a6e00e8014b80a32
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

17 lines
778 B
Plaintext

import { SQL } from "../sql/sql.js";
import { Subquery } from "../subquery.js";
import type { Index } from "./indexes.js";
import type { PrimaryKey } from "./primary-keys.js";
import { SingleStoreTable } from "./table.js";
import { type UniqueConstraint } from "./unique-constraint.js";
export declare function extractUsedTable(table: SingleStoreTable | Subquery | SQL): string[];
export declare function getTableConfig(table: SingleStoreTable): {
columns: import("./index.js").SingleStoreColumn<import("../column.js").ColumnBaseConfig<import("../column-builder.js").ColumnDataType, string>, {}, {}>[];
indexes: Index[];
primaryKeys: PrimaryKey[];
uniqueConstraints: UniqueConstraint[];
name: string;
schema: string | undefined;
baseName: string;
};