UNPKG

452 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './index';
3
4export interface PaginationLinkProps
5 extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
6 [key: string]: any;
7 'aria-label'?: string;
8 cssModule?: CSSModule;
9 next?: boolean;
10 previous?: boolean;
11 first?: boolean;
12 last?: boolean;
13 tag?: React.ElementType;
14}
15
16declare class PaginationLink extends React.Component<PaginationLinkProps> {}
17export default PaginationLink;