/**
* @file src/deferral/from-generator.ts
* @description Just another API for coroutines.
* @copyright 2018-present Karim Alibhai. All rights reserved.
*/import { AsyncFunction } from'../types';
exportdeclarefunction fromGenerator<T>(fn: GeneratorFunction): AsyncFunction<T>;