@s2-dev/streamstore - v0.22.0
    Preparing search index...

    Interface Page<T>

    Paginated response containing a page of results.

    interface Page<T> {
        hasMore: boolean;
        values: readonly T[];
    }

    Type Parameters

    • T

      The type of items in the page

    Index

    Properties

    Properties

    hasMore: boolean

    Whether there are more pages available. If true, use the last item in values as the cursor for the next page.

    values: readonly T[]

    Items in this page.