Vana SDK - v0.1.0
    Preparing search index...

    Interface PaginationResult<T>

    Pagination result

    interface PaginationResult<T> {
        items: T[];
        total: number;
        count: number;
        hasMore: boolean;
        nextCursor?: string;
    }

    Type Parameters

    • T
    Index

    Properties

    items: T[]

    Array of items

    total: number

    Total number of items available

    count: number

    Number of items returned

    hasMore: boolean

    Whether there are more items available

    nextCursor?: string

    Cursor for next page