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

23 lines
573 B
Plaintext

import { ALIGNMENT, COLOR } from './common';
export interface Column {
name: string;
title: string;
alignment?: ALIGNMENT;
color?: COLOR;
length?: number;
minLen?: number;
maxLen?: number;
}
type TableLineDetailsKeys = 'left' | 'right' | 'mid' | 'other';
export type TableLineDetails = {
[key in TableLineDetailsKeys]: string;
};
export type TableStyleDetails = {
headerTop: TableLineDetails;
headerBottom: TableLineDetails;
tableBottom: TableLineDetails;
vertical: string;
rowSeparator?: TableLineDetails;
};
export {};