@table-library/react-table-library
Version:
react-table-library
22 lines (21 loc) • 661 B
TypeScript
import { Theme } from '@table-library/react-table-library/types/theme';
declare type Configuration = {
isVirtualized?: boolean;
};
declare type Options = {
horizontalSpacing?: number;
verticalSpacing?: number;
striped?: boolean;
highlightOnHover?: boolean;
};
export declare const DEFAULT_OPTIONS: {
horizontalSpacing: number;
verticalSpacing: number;
striped: boolean;
highlightOnHover: boolean;
};
export declare const DEFAULT_CONFIGURATION: {
isVirtualized: boolean;
};
export declare const getTheme: (options?: Options | undefined, configuration?: Configuration | undefined) => Theme;
export {};