mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
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.
This commit is contained in:
Vendored
+3
-3
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user