Files
klz-cables.com/.pnpm-store/v10/files/d5/c8d4963355cbf7af0362505751b72fa86f139da1acc26ae6ecb79cdc44fcea0f86ee1f361bbbe32b2cc15304f95c33c6bedc2f03d44c84332c2f491c161854
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
784 B
Plaintext

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