UNPKG

@table-library/react-table-library

Version:
22 lines (21 loc) 661 B
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 {};