/** * 判断是否是异步生成器函数 * @param fn * @returns */ declare function isGeneratorFunction(fn: any): fn is GeneratorFunction; export { isGeneratorFunction };