UNPKG

@anijs/load-config

Version:
11 lines (10 loc) 210 B
/** * 读取yaml配置文件数据 * * @param file yaml文件路径 * @returns json数据 */ declare function readYAMLData(file: string): Promise<{ [key: string]: any; }>; export default readYAMLData;