@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 528 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { KoliBriTableHeaderCell, Stringified } from '../types';
export type TableHeaderCells = {
horizontal?: KoliBriTableHeaderCell[][];
vertical?: KoliBriTableHeaderCell[][];
};
export type TableHeaderCellsPropType = Stringified<TableHeaderCells>;
export type PropTableHeaderCells = {
headerCells: TableHeaderCellsPropType;
};
export declare const validateTableHeaderCells: (component: Generic.Element.Component, value?: TableHeaderCellsPropType) => void;