IHttpProviderDefaults should have a cache property

The defaults of angular's $httpProvider have a cache property. https://docs.angularjs.org/api/ng/provider/$httpProvider#defaults
This commit is contained in:
Vilmos Ioo
2015-06-26 14:22:43 -04:00
parent e1182d56cc
commit 04c84eece2
+1
View File
@@ -1414,6 +1414,7 @@ declare module angular {
* https://docs.angularjs.org/api/ng/service/$http#defaults
*/
interface IHttpProviderDefaults {
cache?: true;
xsrfCookieName?: string;
xsrfHeaderName?: string;
withCredentials?: boolean;