interface PostgresStream<T> {
    [asyncIterator](): AsyncIterableIterator<T>;
}

Type Parameters

  • T

Methods

  • Returns AsyncIterableIterator<T>