Fixed files naming

This commit is contained in:
Maksim Karelov
2015-04-07 19:11:22 +03:00
parent 81226965c7
commit 8883880c64
2 changed files with 2 additions and 2 deletions
@@ -28,7 +28,7 @@ interface JsonRpcClient {
*
* @return {object} Returns the deferred object that $.ajax returns or {null} for websockets
*/
call(method: string, params: Object | Array<any>, successCb?: (result: any) => void, errorCb?: (result: any) => void): JQueryDeferred<JQueryXHR>;
call(method: string, params: Object | Array<any>, successCb: (result: any) => void, errorCb: (result: any) => void): JQueryDeferred<JQueryXHR>;
/**
* Notify sends a command to the server that won't need a response. In http, there is probably
@@ -62,7 +62,7 @@ interface JsonRpcClient {
* Note, that batch calls should always get an overall success, and the
* only error
*/
batch(callback: (batch: JsonRpcClient) => void, allDoneCb?: (result: any) => void, errorCb?: (error: any) => void): void;
batch(callback: (batch: JsonRpcClient) => void, allDoneCb: (result: any) => void, errorCb: (error: any) => void): void;
}
interface JsonRpcClientFactory {