UNPKG

@pipepack/enhanced-resolver

Version:

yet, reimplement enhanced-resolve with the idea 'simple is best'.

7 lines (6 loc) 227 B
/** * @description - execute observable and extract the first * @author - huang.jian <hjj491229492@hotmail.com> */ import { Observable } from 'rxjs'; export declare function promisify<T>(source$: Observable<T>): Promise<T>;