blob: fe5bd9f63a9fdb89dad2039873f57c00f3a6a1bb [file] [log] [blame] [edit]
import type { TableUserConfig } from './types/api';
import type { Row, TableConfig } from './types/internal';
/**
* Makes a new configuration object out of the userConfig object
* using default values for the missing configuration properties.
*/
export declare const makeTableConfig: (rows: Row[], userConfig?: TableUserConfig) => TableConfig;