theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

32 lines
684 B
TypeScript

import { ReactElement } from 'react';
import { HIDE_TOOLTIP, SHOW_TOOLTIP } from './actionTypes';
/**
* Set tooltip state to visible.
*
* @param {string} content - The content of the tooltip.
* Used as unique identifier for tooltip.
* @returns {Object}
*/
export function showTooltip(content: string | ReactElement) {
return {
type: SHOW_TOOLTIP,
content
};
}
/**
* Set tooltip state to hidden.
*
* @param {string} content - The content of the tooltip.
* Used as unique identifier for tooltip.
* @returns {Object}
*/
export function hideTooltip(content: string | ReactElement) {
return {
type: HIDE_TOOLTIP,
content
};
}