d4dd1a575cd0ec3ccad8487dfd421df1f9f4e93bbc7ff53d4b771992fc17b65632ea484f60bb7c1e3c435bf0fe351e6cbbac149c8436274791895a665646bd 259 B

1234567
  1. declare global {
  2. const StopIteration: (object & { readonly __brand__?: unique symbol }) | undefined;
  3. }
  4. declare function getStopIterationIterator<T>(origIterator: { next(): IteratorResult<T> }): Iterator<T, unknown, T>;
  5. export = getStopIterationIterator;