export interface IterableLike<T> {
    [Symbol.iterator]: () => Iterator<T> | IterableIterator<T>;
}
//# sourceMappingURL=IterableLike.d.ts.map