Files
20250612/app_vue/node_modules/table/dist/src/makeTableConfig.d.ts
2025-06-20 18:01:48 +08:00

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;