From 258a8aa5c4964a5e1d3fc026ec1e8351cbd54d85 Mon Sep 17 00:00:00 2001 From: "J.Gocke" Date: Mon, 29 Mar 2021 13:00:41 +0200 Subject: [PATCH] Fixed #1916 - Improving typing of ToolTip position --- src/components/tooltip/Tooltip.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tooltip/Tooltip.d.ts b/src/components/tooltip/Tooltip.d.ts index 4086445dd8..9a5eb7a182 100644 --- a/src/components/tooltip/Tooltip.d.ts +++ b/src/components/tooltip/Tooltip.d.ts @@ -8,7 +8,7 @@ interface TooltipProps { className?: string; style?: object; appendTo?: object; - position?: string; + position?: "top" | "right" | "bottom" | "left"; my?: string; at?: string; event?: string;