mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
import InternalAnchor from './Anchor';
|
|
import AnchorLink from './AnchorLink';
|
|
|
|
export { AnchorProps } from './Anchor';
|
|
export { AnchorLinkProps } from './AnchorLink';
|
|
|
|
type InternalAnchorType = typeof InternalAnchor;
|
|
|
|
interface AnchorInterface extends InternalAnchorType {
|
|
Link: typeof AnchorLink;
|
|
}
|
|
|
|
const Anchor = InternalAnchor as AnchorInterface;
|
|
|
|
Anchor.Link = AnchorLink;
|
|
export default Anchor;
|