UNPKG

@table-library/react-table-library

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