Fixed intro.js module export (#37416)

* Fixed intro.js module export

* Added myself to authors list

* Small commit to force travis.ci to update

'Cause the error seems to be a network issue and I can't trigger a refresh :(
This commit is contained in:
Leon Montealegre 2019-08-07 17:32:48 -04:00 committed by Nathan Shively-Sanders
parent d3d1295490
commit 65ed9ab16a

View File

@ -1,6 +1,7 @@
// Type definitions for intro.js 2.4
// Project: https://github.com/usablica/intro.js
// Definitions by: Maxime Fabre <https://github.com/anahkiasen>
// Leon Montealegre <https://github.com/LeonMontealegre>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace IntroJs {
@ -92,5 +93,5 @@ declare namespace IntroJs {
declare var introJs: IntroJs.Factory;
declare module 'intro.js' {
export = IntroJs;
export = introJs;
}