Files
klz-cables.com/.pnpm-store/v10/files/ec/1846a5e76427580f55fab10491b50fd395f637af0b8dca1117eb006e89a4d4baaaff7a74a62ba39dc8bd1a2025557a3d1d412d0d9d2c6d5a70c19b92efd713
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
368 B
Plaintext

import type { Column } from 'payload';
import React from 'react';
import './index.scss';
export type Props = {
readonly appearance?: 'condensed' | 'default';
readonly BeforeTable?: React.ReactNode;
readonly columns?: Column[];
readonly data: Record<string, unknown>[];
};
export declare const Table: React.FC<Props>;
//# sourceMappingURL=index.d.ts.map