Interface AsyncPeek<T>

interface AsyncPeek<T> {
    peek(): Promise<IteratorResult<T, undefined>>;
}

Type Parameters

  • T

Methods

Methods