index.d.ts 373 B

12345678910
  1. import InternalAnchor from './Anchor';
  2. import AnchorLink from './AnchorLink';
  3. export type { AnchorProps } from './Anchor';
  4. export type { AnchorLinkProps } from './AnchorLink';
  5. type InternalAnchorType = typeof InternalAnchor;
  6. type CompoundedComponent = InternalAnchorType & {
  7. Link: typeof AnchorLink;
  8. };
  9. declare const Anchor: CompoundedComponent;
  10. export default Anchor;