Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Pagination.d.ts 471B

123456789101112131415161718
  1. import PageItem, { Ellipsis, First, Last, Next, Prev } from './PageItem';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface PaginationProps {
  4. size?: 'sm' | 'lg';
  5. }
  6. declare class Pagination extends BsPrefixComponent<'ul', PaginationProps> {
  7. static First: typeof First;
  8. static Prev: typeof Prev;
  9. static Ellipsis: typeof Ellipsis;
  10. static Item: typeof PageItem;
  11. static Next: typeof Next;
  12. static Last: typeof Last;
  13. }
  14. export default Pagination;