You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2016/01/30 11:37:48 UTC

thrift git commit: THRIFT-3588 Using TypeScript with --noImplicitAny fails Client: TypeScript Patch: Frederik Gladhorn

Repository: thrift
Updated Branches:
  refs/heads/master 710704328 -> 356f7aa99


THRIFT-3588 Using TypeScript with --noImplicitAny fails
Client: TypeScript
Patch: Frederik Gladhorn


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/356f7aa9
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/356f7aa9
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/356f7aa9

Branch: refs/heads/master
Commit: 356f7aa998eb54e25d749df366df353c58b3470e
Parents: 7107043
Author: Jens Geyer <je...@apache.org>
Authored: Sat Jan 30 11:34:29 2016 +0100
Committer: Jens Geyer <je...@apache.org>
Committed: Sat Jan 30 11:37:08 2016 +0100

----------------------------------------------------------------------
 lib/ts/thrift.d.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/356f7aa9/lib/ts/thrift.d.ts
----------------------------------------------------------------------
diff --git a/lib/ts/thrift.d.ts b/lib/ts/thrift.d.ts
index 7c5b9e4..0ba46c9 100644
--- a/lib/ts/thrift.d.ts
+++ b/lib/ts/thrift.d.ts
@@ -304,7 +304,7 @@ declare module Thrift {
      */
     constructor(url: string);
 
-    __reset(url): void;
+    __reset(url: string): void;
 
     /**
      * Sends the current WS request and registers callback. The async 
@@ -694,6 +694,6 @@ declare module Thrift {
      * @param {Thrift.ServiceClient} SCl - The Service Client Class.
      * @param {Thrift.Transport} transport - Thrift.Transport instance which provides remote host:port.
      */
-    createClient(serviceName: string, SCl: any, transport: Object);
+    createClient(serviceName: string, SCl: any, transport: Object): any;
   }
-}
\ No newline at end of file
+}