You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
426 B
TypeScript
8 lines
426 B
TypeScript
2 years ago
|
import type { SpanningCellConfig, 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, injectedSpanningCellConfig?: SpanningCellConfig[] | undefined) => TableConfig;
|