# @types/react-js-pagination

> TypeScript definitions for react-js-pagination

Latest version **3.0.7** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/react-js-pagination
pnpm add @types/react-js-pagination
yarn add @types/react-js-pagination
bun add @types/react-js-pagination
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.7 |
| Published | 2023-11-07 |
| First published | 2018-07-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/react-js-pagination
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-js-pagination
- npm.io page: https://npm.io/package/@types/react-js-pagination

## Dependencies (1)

- [@types/react](https://npm.io/package/@types/react.md) *

## Recent versions

- 3.0.7 (latest) — 2023-11-07
- 3.0.4 (ts3.6) — 2021-07-08
- 3.0.3 (ts2.8) — 2019-07-22
- 3.0.0 (ts2.7) — 2018-07-04
- 3.0.6 — 2023-10-18
- 3.0.5 — 2023-09-27
- 3.0.2 — 2019-02-13
- 3.0.1 — 2018-08-04

## README

# Installation
> `npm install --save @types/react-js-pagination`

# Summary
This package contains type definitions for react-js-pagination (https://github.com/vayser/react-js-pagination).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-js-pagination.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-js-pagination/index.d.ts)
````ts
import * as React from "react";

export interface ReactJsPaginationProps {
    totalItemsCount: number;
    onChange: (pageNumber: number) => void;
    activePage: number;
    itemsCountPerPage?: number | undefined;
    pageRangeDisplayed?: number | undefined;
    prevPageText?: string | React.ReactElement | undefined;
    nextPageText?: string | React.ReactElement | undefined;
    lastPageText?: string | React.ReactElement | undefined;
    firstPageText?: string | React.ReactElement | undefined;
    disabledClass?: string | undefined;
    hideDisabled?: boolean | undefined;
    hideNavigation?: boolean | undefined;
    innerClass?: string | undefined;
    itemClass?: string | undefined;
    itemClassFirst?: string | undefined;
    itemClassPrev?: string | undefined;
    itemClassNext?: string | undefined;
    itemClassLast?: string | undefined;
    linkClass?: string | undefined;
    activeClass?: string | undefined;
    activeLinkClass?: string | undefined;
    linkClassFirst?: string | undefined;
    linkClassPrev?: string | undefined;
    linkClassNext?: string | undefined;
    linkClassLast?: string | undefined;
    hideFirstLastPages?: boolean | undefined;
    getPageUrl?: ((pageNumber: number) => string) | undefined;
}
declare const Pagination: React.ClassicComponentClass<ReactJsPaginationProps>;

export default Pagination;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: [@types/react](https://npmjs.com/package/@types/react)

# Credits
These definitions were written by [Ernesto Cruz](https://github.com/netoisc).

---
_Source: https://npm.io/package/@types/react-js-pagination · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
