mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-09 12:30:07 +08:00
8 lines
426 B
TypeScript
8 lines
426 B
TypeScript
|
|
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;
|