From 601959508ef3e5173234350a33f56dd456da8dd7 Mon Sep 17 00:00:00 2001 From: giabao Date: Fri, 22 Nov 2013 19:23:08 +0700 Subject: [PATCH] error TS7010: 'mixIn', which lacks return-type annotation, implicitly has an 'any' return type. --- cryptojs/cryptojs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptojs/cryptojs.d.ts b/cryptojs/cryptojs.d.ts index 003d30182..e71888460 100644 --- a/cryptojs/cryptojs.d.ts +++ b/cryptojs/cryptojs.d.ts @@ -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 }