/** * @param obj The iterable * @param method The method to use to get the `Iterator` */ declare function GetIterator>(obj: { [Symbol.iterator](): I }): I; declare function GetIterator>(obj: O, method: (this: O) => I): I; export = GetIterator;