prorm API Reference
    Preparing search index...

    Interface ScrollPage

    Result of scroll(): a page of points plus the offset to fetch the next page.

    interface ScrollPage {
        points: {}[];
        nextPageOffset:
            | string
            | number
            | Record<string, unknown>
            | null
            | undefined;
    }
    Index
    points: {}[]
    nextPageOffset: string | number | Record<string, unknown> | null | undefined

    Pass to scroll()'s offset to fetch the next page; null when there is no more data.