Interface Paginator<Entity, Params>

interface Paginator<Entity, Params> {
    [asyncIterator](): AsyncIterator<Entity, undefined, undefined | string | Params>;
    clone(): Paginator<Entity, Params>;
    getDirection(): Direction;
    next(params?): Promise<IteratorResult<Entity, undefined>>;
    return(value): Promise<IteratorResult<Entity, undefined>>;
    setDirection(direction): Paginator<Entity, Params>;
    then<TResult1, TResult2>(onfulfilled?, onrejected?): PromiseLike<TResult1 | TResult2>;
    throw(e?): Promise<IteratorResult<Entity, undefined>>;
    values(): AsyncIterableIterator<Entity>;
}

Type Parameters

  • Entity
  • Params = undefined

Hierarchy

Methods

  • Attaches callbacks for the resolution and/or rejection of the Promise.

    Type Parameters

    • TResult1 = Entity
    • TResult2 = never

    Parameters

    • Optional onfulfilled: null | ((value) => TResult1 | PromiseLike<TResult1>)

      The callback to execute when the Promise is resolved.

    • Optional onrejected: null | ((reason) => TResult2 | PromiseLike<TResult2>)

      The callback to execute when the Promise is rejected.

    Returns PromiseLike<TResult1 | TResult2>

    A Promise for the completion of which ever callback is executed.