Added module declarations to allow "require" statements to work properly

This commit is contained in:
Michael Van Sickle
2014-12-08 23:23:00 -05:00
parent 4dc8904eeb
commit 0e84156577
63 changed files with 12589 additions and 4673 deletions
+22 -1
View File
@@ -268,4 +268,25 @@ declare module dojox {
}
}
}
}
declare module "dojox/string/tokenize" {
var exp: dojox.string_.tokenize
export=exp;
}
declare module "dojox/string/sprintf" {
var exp: dojox.string_.sprintf
export=exp;
}
declare module "dojox/string/Builder" {
var exp: dojox.string_.Builder
export=exp;
}
declare module "dojox/string/BidiComplex" {
var exp: dojox.string_.BidiComplex
export=exp;
}
declare module "dojox/string/BidiEngine" {
var exp: dojox.string_.BidiEngine
export=exp;
}