UNPKG

@appkitreact/react-table-library

Version:

fork of react-table-library to support react 18 version

22 lines (21 loc) 635 B
import { Theme } from '@appkitreact/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, configuration?: Configuration) => Theme; export {};