Fix parameters not optional

This commit is contained in:
Ajay
2022-02-06 18:55:27 -05:00
parent 459de6654a
commit ccb0e8bed9

View File

@@ -10,8 +10,8 @@ export interface TooltipProps {
timeout?: number;
opacity?: number;
displayTriangle?: boolean;
showLogo: boolean;
showGotIt: boolean;
showLogo?: boolean;
showGotIt?: boolean;
}
export class Tooltip {