import React from 'react'; import { AlertProps } from '@firesoon/antd/lib/alert/index'; export interface props extends AlertProps { /** 是否是跳转类型 */ isLink?: boolean; /** 跳转回调 */ onLink?: React.MouseEventHandler; }