You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
431 B
9 lines
431 B
import type { GraphOptions } from '../spec';
|
|
/**
|
|
* <zh/> 基于用户传入的配置,推断出最终的配置
|
|
*
|
|
* <en/> Infer the final configuration based on the configuration passed by the user
|
|
* @param options - <zh/> 用户传入的配置 | <en/> Configuration passed by the user
|
|
* @returns <zh/> 最终的配置 | <en/> Final configuration
|
|
*/
|
|
export declare function inferOptions(options: GraphOptions): GraphOptions;
|
|
|