angularjs: Support HttpParamSerializer interface

This commit is contained in:
Thanabodee Charoenpiriyakij
2016-03-20 15:19:37 +07:00
parent c4309e0e64
commit 5256422ee7
2 changed files with 15 additions and 0 deletions
+7
View File
@@ -1110,3 +1110,10 @@ function doBootstrap(element: Element | JQuery, mode: string): ng.auto.IInjector
debugInfoEnabled: false
});
}
function testIHttpParamSerializerJQLikeProvider() {
let serializer: angular.IHttpParamSerializer;
serializer({
a: "b"
});
}