amis-rpc-design/node_modules/antd/es/anchor/AnchorLink.d.ts
2023-10-07 19:42:30 +08:00

15 lines
388 B
TypeScript

import * as React from 'react';
export interface AnchorLinkBaseProps {
prefixCls?: string;
href: string;
target?: string;
title: React.ReactNode;
className?: string;
replace?: boolean;
}
export interface AnchorLinkProps extends AnchorLinkBaseProps {
children?: React.ReactNode;
}
declare const AnchorLink: React.FC<AnchorLinkProps>;
export default AnchorLink;