(restangular) Fix argument order in custom methods

The arguments were in the wrong order for custom methods
This commit is contained in:
Santi Albo
2014-04-24 11:35:12 +01:00
parent 01f1a715b4
commit e3c20e7aca
+2 -2
View File
@@ -60,8 +60,8 @@ interface RestangularCustom {
customGET(path: string, params?: any, headers?: any): ng.IPromise<any>;
customGETLIST(path: string, params?: any, headers?: any): ng.IPromise<any>;
customDELETE(path: string, params?: any, headers?: any): ng.IPromise<any>;
customPOST(path: string, params?: any, headers?: any, elem?: any): ng.IPromise<any>;
customPUT(path: string, params?: any, headers?: any, elem?: any): ng.IPromise<any>;
customPOST(elem?: any, path?: string, params?: any, headers?: any): ng.IPromise<any>;
customPUT(elem?: any, path?: string, params?: any, headers?: any): ng.IPromise<any>;
customOperation(operation: string, path: string, params?: any, headers?: any, elem?: any): ng.IPromise<any>;
addRestangularMethod(name: string, operation: string, path?: string, params?: any, headers?: any, elem?: any): ng.IPromise<any>;
}