UNPKG

209 BTypeScriptView Raw
1/**
2 * This clas serves as the base for all operations which support [Symbol.iterator].
3 */
4export declare abstract class IterableX<T> implements Iterable<T> {
5 abstract [Symbol.iterator](): Iterator<T>;
6}