UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

11 lines (10 loc) 240 B
/** * 获取天气信息 * @returns {Promise<Array>} 天气数据 * @example * * fetchWeatherData().then(content => { * console.log(content) * }) */ export declare function fetchWeatherData<T extends Array<object>>(): Promise<T>;