@glodon-aiot/react-components
Version:
aiot react components
10 lines (9 loc) • 309 B
TypeScript
import { FC, Key } from 'react';
import { AbstractTooltipProps } from 'antd/es/tooltip';
import { ITrackPoint } from '.';
export interface PointTooltipProps extends AbstractTooltipProps {
point: ITrackPoint;
key?: Key;
}
declare const PointTooltip: FC<PointTooltipProps>;
export default PointTooltip;