UNPKG

awesome-gcl

Version:
17 lines (16 loc) 521 B
import { TableComponentsEnum, TableConstructorPropTypes } from "./types"; interface TableStyle { buildStyleRules: () => Record<`${TableComponentsEnum}Class`, string>; } export declare class TableStyles implements TableStyle { private themes; private additionalClasses; constructor({ additionalClasses }: TableConstructorPropTypes); buildStyleRules(): { tableClass: string; tableHeadClass: string; headerRowClass: string; hiddenIconRepClass: string; }; } export {};