mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-27 11:12:45 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
interface Props extends React.HTMLProps<HTMLAnchorElement> {
|
|
'aria-label'?: string;
|
|
className?: string;
|
|
next?: boolean;
|
|
previous?: boolean;
|
|
tag?: React.ReactType;
|
|
}
|
|
|
|
declare var PaginationLink: React.StatelessComponent<Props>;
|
|
export default PaginationLink; |