James Birtles commited on
Commit
b449fec
·
1 Parent(s): c3b7da3

Add immediate param to Driver.reset in typings (#99)

Browse files
Files changed (1) hide show
  1. types/index.d.ts +2 -2
types/index.d.ts CHANGED
@@ -86,7 +86,7 @@ declare module 'driver.js' {
86
  /**
87
  * Resets the steps and clears the overlay
88
  */
89
- public reset(): void;
90
 
91
  /**
92
  * Checks if there is any highlighted element or not
@@ -728,4 +728,4 @@ declare module 'driver.js' {
728
  }
729
 
730
  export = Driver;
731
- }
 
86
  /**
87
  * Resets the steps and clears the overlay
88
  */
89
+ public reset(immediate?: boolean): void;
90
 
91
  /**
92
  * Checks if there is any highlighted element or not
 
728
  }
729
 
730
  export = Driver;
731
+ }