From 4315d16fd511566b3c8603d8c9b352fc75ff1e84 Mon Sep 17 00:00:00 2001 From: Steve Mayes Date: Sat, 27 Feb 2016 20:22:58 -0500 Subject: [PATCH] Fixes to the Option interface (1) Fixed hintPosition and hintButtonLabel to make them optional. (2) Made steps optional since it is not required by the intro.js library. --- intro.js/intro.js.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intro.js/intro.js.d.ts b/intro.js/intro.js.d.ts index a3cb5a8e4..b476d5793 100644 --- a/intro.js/intro.js.d.ts +++ b/intro.js/intro.js.d.ts @@ -29,9 +29,9 @@ declare module IntroJs { overlayOpacity?: number; positionPrecedence?: string[]; disableInteraction?: boolean; - hintPosition: string; - hintButtonLabel: string; - steps: Step[]; + hintPosition?: string; + hintButtonLabel?: string; + steps?: Step[]; } interface IntroJs {