added getRequestedUrl to IElement and ICollection

This commit is contained in:
Mark Bouwman
2017-05-15 13:14:22 +02:00
parent dd48c9c35e
commit 57df82422e
+2
View File
@@ -134,6 +134,7 @@ declare namespace restangular {
withHttpConfig(httpConfig: angular.IRequestShortcutConfig): IElement;
save(queryParams?: any, headers?: any): IPromise<any>;
getRestangularUrl(): string;
getRequestedUrl(): string;
route?: string;
id?: string;
reqParams?: any;
@@ -154,5 +155,6 @@ declare namespace restangular {
plain(): any;
plain<T>(): T[];
getRestangularUrl(): string;
getRequestedUrl(): string;
}
}