UNPKG

234 BTypeScriptView Raw
1/**
2 * This clas serves as the base for all operations which support [Symbol.asyncIterator].
3 */
4export declare abstract class AsyncIterableX<T> implements AsyncIterable<T> {
5 abstract [Symbol.asyncIterator](): AsyncIterator<T>;
6}