mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
8 lines
347 B
TypeScript
8 lines
347 B
TypeScript
|
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;
|