@teamsnap/teamsnap-ui
Version:
a CSS component library for TeamSnap
13 lines (12 loc) • 522 B
TypeScript
import * as PropTypes from "prop-types";
import * as React from "react";
declare const propTypes: {
totalItems: PropTypes.Validator<number>;
itemsPerPage: PropTypes.Validator<number>;
currentPage: PropTypes.Validator<number>;
setCurrentPage: PropTypes.Validator<(...args: any[]) => any>;
style: PropTypes.Requireable<object>;
mods: PropTypes.Requireable<string>;
};
declare const PaginationButtons: React.FunctionComponent<PropTypes.InferProps<typeof propTypes>>;
export default PaginationButtons;