@resistdesign/voltra
    Preparing search index...

    Type Alias ListItemsResults<ItemType>

    The results from a request to list items.

    type ListItemsResults<ItemType extends Record<any, any>> = {
        cursor?: string;
        items: ItemType[];
    }

    Type Parameters

    • ItemType extends Record<any, any>
    Index

    Properties

    Properties

    cursor?: string

    Cursor for paging into the next page, when available.

    items: ItemType[]

    Items returned by the request.