PaginationResult
Represents a paginated result.
Definition
interface PaginationResult<T> {
total: number;
totalPages: number;
items: T[]
}
Type parameters
T
Properties
total: Total number of records.totalPagesitems: Items in the page.