UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

9 lines (8 loc) 444 B
import type { Generic } from 'adopted-style-sheets'; import type { SetStateHooks } from '../utils'; import type { KoliBriTableDataType, Stringified } from '../types'; export type TableDataPropType = Stringified<KoliBriTableDataType[]>; export type PropTableData = { data: TableDataPropType; }; export declare const validateTableData: (component: Generic.Element.Component, value?: TableDataPropType, setStateHooks?: SetStateHooks) => void;