DIR: /proc/1991110/task/1991110/cwd/usr/share/nodejs/@types/es-abstract/2015/ |
Current File : //proc/1991110/task/1991110/cwd/usr/share/nodejs/@types/es-abstract/2015/GetIterator.d.ts |
/** * @param obj The iterable * @param method The method to use to get the `Iterator` */ declare function GetIterator<I extends Iterator<unknown, unknown, unknown>>(obj: { [Symbol.iterator](): I }): I; declare function GetIterator<O, I extends Iterator<unknown, unknown, unknown>>(obj: O, method: (this: O) => I): I; export = GetIterator; |