fix: incorrect tooltip docs for tooltipVisible attr (#3411)

This commit is contained in:
David Wheatley
2022-05-09 16:56:56 +01:00
committed by GitHub
parent 843a613cda
commit f9ae7cd67f

View File

@ -12,9 +12,9 @@ export interface TooltipAttrs extends Mithril.CommonAttributes<TooltipAttrs, Too
*/
text: string | string[];
/**
* Manually show tooltip. `false` will show based on cursor events.
* Use to manually show or hide the tooltip. `undefined` will show based on cursor events.
*
* Default: `false`.
* Default: `undefined`.
*/
tooltipVisible?: boolean;
/**