Fix class export, Add additional module

Fixes the class export for development with IntelliJ, adds a additional module for bower_component naming compatibility.
This commit is contained in:
Florian Wagner
2015-11-11 13:40:47 +01:00
committed by Florian Wagner
parent 60cc52350c
commit 9d6ade6fe2

8
jsuri/jsuri.d.ts vendored
View File

@@ -1,6 +1,6 @@
// Type definitions for jsUri 1.3+
// Project: https://github.com/derek-watson/jsUri
// Definitions by: Chris Charabaruk <http://github.com/coldacid>
// Definitions by: Chris Charabaruk <http://github.com/coldacid>, Florian Wagner <http://github.com/flqw>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module jsuri {
@@ -135,5 +135,9 @@ declare module jsuri {
declare type Uri = jsuri.Uri;
declare module 'jsuri' {
export = Uri;
export = jsuri.Uri;
}
declare module 'jsUri' {
export = jsuri.Uri;
}