mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
18 lines
452 B
TypeScript
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;
|