Interface PaginationQueryOptions

interface PaginationQueryOptions {
    limit?: number;
    order?: string;
    skip?: number;
}

Hierarchy (view full)

Properties

Properties

limit?: number
order?: string
skip?: number