AnchorLink.d.ts 388 B

1234567891011121314
  1. import * as React from 'react';
  2. export interface AnchorLinkBaseProps {
  3. prefixCls?: string;
  4. href: string;
  5. target?: string;
  6. title: React.ReactNode;
  7. className?: string;
  8. replace?: boolean;
  9. }
  10. export interface AnchorLinkProps extends AnchorLinkBaseProps {
  11. children?: React.ReactNode;
  12. }
  13. declare const AnchorLink: React.FC<AnchorLinkProps>;
  14. export default AnchorLink;