GitHub

DaffNumericallyPaginable

The interface that describes a collection of elements that can be navigated in a paged way. E.g. "Pages 1,2,3,4,5".

import { DaffNumericallyPaginable } from '@daffodil/core'
interface DaffNumericallyPaginable {
  currentPage: number
  totalPages: number
  pageSize: number
}

Properties

Name Type Description
currentPage number
totalPages number
pageSize number