Paginated result set returned by DAS list/search endpoints.

Wraps an array of items with total count, page size, and cursor for efficient pagination.

1.0.0

interface DasPage<T> {
    cursor?: string;
    items: T[];
    limit: number;
    page: number;
    total: number;
}

Type Parameters

Properties

cursor?: string
items: T[]
limit: number
page: number
total: number