UNPKG

472 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace SafeAnchor {
4 export interface SafeAnchorProps extends React.HTMLProps<SafeAnchor> {
5 href?: string | undefined;
6 onClick?: React.MouseEventHandler<{}> | undefined;
7 disabled?: boolean | undefined;
8 role?: string | undefined;
9 componentClass?: React.ReactType | undefined;
10 }
11}
12declare class SafeAnchor extends React.Component<SafeAnchor.SafeAnchorProps> { }
13export = SafeAnchor;