@medic/cht-datasource
    Preparing search index...

    Interface Page<T>

    Represents a page of results. The data array contains the results for this page. The cursor field contains a token that can be used to fetch the next page of results. If no cursor value is returned, there are no additional results available. (Note that no assumptions should be made about the contents of the cursor string.)

    interface Page<T> {
        cursor: Nullable<string>;
        data: T[];
    }

    Type Parameters

    • T

      the type of the data in the page

    Index

    Properties

    Properties

    cursor: Nullable<string>
    data: T[]