Type Alias Pagination

Pagination: {
    size: number;
    step?: number;
}

Type declaration

  • size: number

    How many pages to render at once. May be used to display, for example, two months next to each other.

  • Optionalstep?: number

    The amount of pages will be navigated forward/backward when paging the calendar. If not set, size will be used for paginating.