error TS7010: 'mixIn', which lacks return-type annotation, implicitly has an 'any' return type.

This commit is contained in:
giabao
2013-11-22 19:23:08 +07:00
parent 6ebba5204b
commit 601959508e
+1 -1
View File
@@ -13,7 +13,7 @@ declare module CryptoJS{
init(...args: any[]): void
//arguments of create() is same as init(). This is true for all subclasses
create(...args: any[]): Base
mixIn(properties: Object)
mixIn(properties: Object): void
clone(): Base
}