projecte_ionic/node_modules/table/dist/makeTableConfig.d.ts
2022-02-09 18:30:03 +01:00

7 lines
343 B
TypeScript
Executable file

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[], config?: TableUserConfig) => TableConfig;