@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
12 lines (11 loc) • 373 B
TypeScript
type PaginationProps = {
hasNextPage: boolean;
hasPrevPage: boolean;
onNext: () => void;
onPrev: () => void;
pageIndex: number;
pageSize: number;
total: number;
};
export declare const Pagination: ({ hasNextPage, hasPrevPage, onNext, onPrev, pageIndex, pageSize, total, }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
export {};