Files
klz-cables.com/.pnpm-store/v10/files/d1/84379898bd844973373b7056fbb25b4dca10d17acaef9341cffd5bd13de46c397868ff615fb95b04dc4a72e0af9f16975db43813fd6e16be7dbd19797c3de0
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

13 lines
499 B
Plaintext

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