@teamsnap/teamsnap-ui
Version:
a CSS component library for TeamSnap
10 lines (9 loc) • 399 B
TypeScript
import * as PropTypes from "prop-types";
import * as React from "react";
declare const propTypes: {
currentPage: PropTypes.Validator<number>;
totalItems: PropTypes.Validator<number>;
itemsPerPage: PropTypes.Validator<number>;
};
declare const PaginationCurrentSubsetDisplay: React.FunctionComponent<PropTypes.InferProps<typeof propTypes>>;
export default PaginationCurrentSubsetDisplay;