pivot-chart
Version:
pivot table react component
22 lines (21 loc) • 483 B
TypeScript
interface ThemeConfig {
root?: {
display?: boolean;
label?: string;
};
summary?: {
label?: string;
};
table?: {
highlightBGColor?: string;
thead?: {
backgroundColor?: string;
color?: string;
};
borderColor?: string;
color?: string;
};
}
export declare function registerTheme(config?: ThemeConfig): ThemeConfig;
export declare function getTheme(): ThemeConfig;
export {};