Documentation - v1.2.0-alpha.3
    Preparing search index...

    Interface PagedResult<T>

    Paged result of items.

    interface PagedResult<T> {
        continuationToken?: string;
        items: T[];
    }

    Type Parameters

    • T

      The type of items in the paged result.

    Index

    Properties

    continuationToken?: string

    The continuation token for pagination.

    items: T[]

    The items in the paged result.