From 9cbbb79f9c55ed0a3a784037d1d9c8fc629e823e Mon Sep 17 00:00:00 2001 From: Furkan Sezis Date: Sun, 9 Apr 2023 18:11:41 +0300 Subject: [PATCH] tooltip.d.ts updated --- components/lib/tooltip/Tooltip.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/lib/tooltip/Tooltip.d.ts b/components/lib/tooltip/Tooltip.d.ts index caa5f2a18..b51f73f70 100755 --- a/components/lib/tooltip/Tooltip.d.ts +++ b/components/lib/tooltip/Tooltip.d.ts @@ -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; } /**