From 9b493958d20cbaa18c2e494c5d0ca30a32aa05bf Mon Sep 17 00:00:00 2001 From: joonasmattila <36038665+joonasmattila@users.noreply.github.com> Date: Fri, 26 Mar 2021 06:55:36 +0200 Subject: [PATCH] fix(type): added role property to types (#679) --- react-tooltip.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/react-tooltip.d.ts b/react-tooltip.d.ts index a1651a6c..a9c1732a 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