From 06f82d129ae0ae862e0c825ce58f7ff13e8c22f0 Mon Sep 17 00:00:00 2001 From: joonasmattila <36038665+joonasmattila@users.noreply.github.com> Date: Tue, 2 Mar 2021 09:41:13 +0200 Subject: [PATCH] fix(type): Added role-property to types --- react-tooltip.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/react-tooltip.d.ts b/react-tooltip.d.ts index a1651a6c9..a9c1732a3 100644 --- a/react-tooltip.d.ts +++ b/react-tooltip.d.ts @@ -104,6 +104,8 @@ export interface TooltipProps { possibleCustomEventsOff?: string; // Should the tooltip by clickable? clickable?: boolean; + // Aria role for the tooltip + role?: string; } // ReactTooltip component is the default export