GoScrobble/web/node_modules/reactstrap/es/PaginationLink.d.ts

18 lines
452 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface PaginationLinkProps
extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
[key: string]: any;
'aria-label'?: string;
cssModule?: CSSModule;
next?: boolean;
previous?: boolean;
first?: boolean;
last?: boolean;
tag?: React.ElementType;
}
declare class PaginationLink extends React.Component<PaginationLinkProps> {}
export default PaginationLink;