Backstage
    Preparing search index...

    Interface CursorResponse<T>

    interface CursorResponse<T> {
        data: T[];
        nextCursor?: string;
        prevCursor?: string;
        totalCount?: number;
    }

    Type Parameters

    • T
    Index

    Properties

    data: T[]
    nextCursor?: string
    prevCursor?: string
    totalCount?: number