Type alias StreamPaginationOptions

StreamPaginationOptions: {
    offset: number;
    limit: number;
}

Stream pagination options used StreamPagination.getStreams.

Type declaration

  • offset: number

    Number of streams to skip. Should be >= 0.

  • limit: number

    Number of streams to return. Should be > 0.

Generated using TypeDoc