Interface PaginationOptions

interface PaginationOptions {
    totalPages: number;
    currentUserPage: number;
    handlePageChange: ((options: any) => Promise<void>);
    position: string;
    location: string;
    direction: "horizontal" | "vertical";
    buttonsContainerStyle: any;
    activePageStyle: any;
    inactivePageStyle: any;
    backgroundColor: string;
    paginationHeight: number;
    showAspect?: boolean;
    parameters: PaginationParameters;
}

Properties

totalPages: number
currentUserPage: number
handlePageChange: ((options: any) => Promise<void>)
position: string
location: string
direction: "horizontal" | "vertical"
buttonsContainerStyle: any
activePageStyle: any
inactivePageStyle: any
backgroundColor: string
paginationHeight: number
showAspect?: boolean