mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
Merge pull request #2096 from santialbo/patch-5
(restangular) Fix argument order in custom methods
This commit is contained in:
@@ -75,7 +75,7 @@ function test_basic() {
|
||||
|
||||
$scope.account = account.get({ single: true });
|
||||
|
||||
account.customPOST("messages", { param: "myParam" }, {}, { name: "My Message" })
|
||||
account.customPOST({ name: "My Message" }, "messages", { param: "myParam" }, {})
|
||||
}
|
||||
|
||||
function test_config() {
|
||||
|
||||
4
restangular/restangular.d.ts
vendored
4
restangular/restangular.d.ts
vendored
@@ -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>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user