UNPKG

antd-fx67ll-test

Version:

这是一个测试着玩的私服antd项目,完全照抄v4.16.6的antd源码,请勿使用,仅做发布测试(因每次发布必须要升版本,如发现版本出入请忽略,与官方无关)

26 lines (25 loc) 853 B
import * as React from 'react'; import { AntAnchor } from './Anchor'; import { ConfigConsumerProps } from '../config-provider'; export interface AnchorLinkProps { prefixCls?: string; href: string; target?: string; title: React.ReactNode; children?: React.ReactNode; className?: string; } declare class AnchorLink extends React.Component<AnchorLinkProps, any, AntAnchor> { static defaultProps: { href: string; }; static contextType: React.Context<AntAnchor>; context: AntAnchor; componentDidMount(): void; componentDidUpdate({ href: prevHref }: AnchorLinkProps): void; componentWillUnmount(): void; handleClick: (e: React.MouseEvent<HTMLElement>) => void; renderAnchorLink: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export default AnchorLink;