UNPKG

@public-ui/components

Version:

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

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