antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 373 B
TypeScript
import InternalAnchor from './Anchor';
import AnchorLink from './AnchorLink';
export type { AnchorProps } from './Anchor';
export type { AnchorLinkProps } from './AnchorLink';
type InternalAnchorType = typeof InternalAnchor;
interface AnchorInterface extends InternalAnchorType {
Link: typeof AnchorLink;
}
declare const Anchor: AnchorInterface;
export default Anchor;