PromoCursed/node_modules/antd/lib/anchor/index.d.ts
2024-08-20 23:25:37 +04:00

11 lines
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;
type CompoundedComponent = InternalAnchorType & {
Link: typeof AnchorLink;
};
declare const Anchor: CompoundedComponent;
export default Anchor;