tooltip.d.ts updated

pull/3845/head
Furkan Sezis 2023-04-09 18:11:41 +03:00
parent 2067a2b5a1
commit 9cbbb79f9c
1 changed files with 10 additions and 0 deletions

View File

@ -40,6 +40,16 @@ export interface TooltipOptions {
* @defaultValue true
*/
fitContent?: boolean | undefined;
/**
* When present, it adds a custom delay to the tooltip's display.
* @defaultValue 0
*/
showDelay?: number | undefined;
/**
* When present, it adds a custom delay to the tooltip's hiding.
* @defaultValue 0
*/
hideDelay?: number | undefined;
}
/**