@angular-wave/angular.ts 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (793) hide show
  1. package/.github/workflows/lint.yml +19 -0
  2. package/README.md +2 -10
  3. package/dist/angular-ts.esm.js +2 -2
  4. package/dist/angular-ts.umd.js +2 -2
  5. package/package.json +3 -3
  6. package/src/angular.spec.js +0 -76
  7. package/src/animations/animate-css.js +6 -2
  8. package/src/animations/animate.js +1 -17
  9. package/src/core/compile/attributes.js +0 -20
  10. package/src/core/compile/compile.js +0 -5
  11. package/src/core/controller/controller.js +1 -9
  12. package/src/core/exception-handler.js +0 -3
  13. package/src/core/interpolate/interpolate.js +0 -14
  14. package/src/core/q/q.js +0 -5
  15. package/src/core/sce/sce.js +0 -400
  16. package/src/core/sce/sce.md +300 -0
  17. package/src/core/scope/scope.js +1 -75
  18. package/src/core/url-utils/url-utils.js +0 -47
  19. package/src/core/url-utils/url-utils.md +46 -0
  20. package/src/directive/aria/aria.js +1 -6
  21. package/src/directive/class/class.js +0 -16
  22. package/src/directive/form/form.js +0 -41
  23. package/src/directive/model/model.js +0 -32
  24. package/src/directive/ref/ref.js +0 -5
  25. package/src/directive/script/script.js +0 -15
  26. package/src/directive/script/script.md +11 -0
  27. package/src/directive/select/select.js +0 -13
  28. package/src/directive/transclude/transclude.js +0 -5
  29. package/src/directive/validators/validators.js +0 -15
  30. package/src/loader.js +34 -50
  31. package/src/public.js +0 -1
  32. package/src/router/directives/view-directive.js +0 -11
  33. package/src/router/params/param-type.js +3 -8
  34. package/src/router/params/param-types.js +3 -10
  35. package/src/router/resolve/resolvable.js +7 -15
  36. package/src/router/transition/transition.js +2 -2
  37. package/src/router/url/url-matcher.js +4 -4
  38. package/src/services/browser.js +0 -8
  39. package/src/services/cache-factory.js +0 -42
  40. package/src/services/http/http.js +0 -17
  41. package/src/services/http-backend/http-backend.js +0 -4
  42. package/src/services/log.js +4 -9
  43. package/src/shared/common.js +33 -36
  44. package/src/shared/predicates.js +11 -12
  45. package/src/types.js +9 -17
  46. package/typedoc/.nojekyll +1 -0
  47. package/typedoc/assets/highlight.css +162 -0
  48. package/typedoc/assets/icons.js +18 -0
  49. package/typedoc/assets/icons.svg +1 -0
  50. package/typedoc/assets/main.js +60 -0
  51. package/typedoc/assets/navigation.js +1 -0
  52. package/typedoc/assets/search.js +1 -0
  53. package/typedoc/assets/style.css +1448 -0
  54. package/typedoc/classes/animations_animate.AnimateProvider.html +71 -0
  55. package/typedoc/classes/animations_animate_cache.__AnimateCacheProvider.html +3 -0
  56. package/typedoc/classes/animations_animate_css._AnimateCssProvider.html +3 -0
  57. package/typedoc/classes/animations_animate_css_driver.__AnimateCssDriverProvider.html +4 -0
  58. package/typedoc/classes/animations_animate_js.__AnimateJsProvider.html +4 -0
  59. package/typedoc/classes/animations_animate_js_driver.__AnimateJsDriverProvider.html +4 -0
  60. package/typedoc/classes/animations_animate_queue.__AnimateQueueProvider.html +5 -0
  61. package/typedoc/classes/animations_animate_runner.AnimateAsyncRunFactoryProvider.html +3 -0
  62. package/typedoc/classes/animations_animate_runner.AnimateRunner.html +22 -0
  63. package/typedoc/classes/animations_animate_runner.AnimateRunnerFactoryProvider.html +3 -0
  64. package/typedoc/classes/animations_animation.__AnimationProvider.html +4 -0
  65. package/typedoc/classes/animations_raf_scheduler.RafSchedulerProvider.html +6 -0
  66. package/typedoc/classes/core_compile_attributes.Attributes.html +51 -0
  67. package/typedoc/classes/core_compile_compile._CompileProvider.html +98 -0
  68. package/typedoc/classes/core_controller_controller._ControllerProvider.html +18 -0
  69. package/typedoc/classes/core_di_internal_injector.InjectorService.html +20 -0
  70. package/typedoc/classes/core_di_internal_injector.ProviderInjector.html +21 -0
  71. package/typedoc/classes/core_di_ng_module.NgModule.html +34 -0
  72. package/typedoc/classes/core_exception_handler._ExceptionHandlerProvider.html +3 -0
  73. package/typedoc/classes/core_filter_filter._FilterProvider.html +5 -0
  74. package/typedoc/classes/core_interpolate_interpolate._InterpolateProvider.html +25 -0
  75. package/typedoc/classes/core_interval_interval._IntervalProvider.html +3 -0
  76. package/typedoc/classes/core_interval_interval_factory.__IntervalFactoryProvider.html +3 -0
  77. package/typedoc/classes/core_location_location.Location.html +94 -0
  78. package/typedoc/classes/core_location_location.LocationHashbangUrl.html +101 -0
  79. package/typedoc/classes/core_location_location.LocationHtml5Url.html +99 -0
  80. package/typedoc/classes/core_location_location._LocationProvider.html +27 -0
  81. package/typedoc/classes/core_parser_ast.AST.html +93 -0
  82. package/typedoc/classes/core_parser_interpreter.ASTInterpreter.html +144 -0
  83. package/typedoc/classes/core_parser_lexer.Lexer.html +64 -0
  84. package/typedoc/classes/core_parser_parse._ParseProvider.html +19 -0
  85. package/typedoc/classes/core_parser_parser.Parser.html +8 -0
  86. package/typedoc/classes/core_pubsub_pubsub.PubSub.html +71 -0
  87. package/typedoc/classes/core_q_q._QProvider.html +9 -0
  88. package/typedoc/classes/core_q_q.__QProvider.html +4 -0
  89. package/typedoc/classes/core_sanitize_sanitize_uri.SanitizeUriProvider.html +32 -0
  90. package/typedoc/classes/core_sce_sce._SceDelegateProvider.html +67 -0
  91. package/typedoc/classes/core_sce_sce._SceProvider.html +7 -0
  92. package/typedoc/classes/core_scope_scope.Scope.html +350 -0
  93. package/typedoc/classes/core_scope_scope._RootScopeProvider.html +10 -0
  94. package/typedoc/classes/core_task_tracker_factory.TaskTracker.html +29 -0
  95. package/typedoc/classes/core_task_tracker_factory.__TaskTrackerFactoryProvider.html +3 -0
  96. package/typedoc/classes/core_timeout_timeout._TimeoutProvider.html +3 -0
  97. package/typedoc/classes/directive_aria_aria.AriaProvider.html +14 -0
  98. package/typedoc/classes/directive_form_form.FormController.html +138 -0
  99. package/typedoc/classes/directive_model_model.NgModelController.html +235 -0
  100. package/typedoc/classes/loader.Angular.html +68 -0
  101. package/typedoc/classes/router_common_glob.Glob.html +10 -0
  102. package/typedoc/classes/router_common_queue.Queue.html +14 -0
  103. package/typedoc/classes/router_common_trace.Trace.html +42 -0
  104. package/typedoc/classes/router_globals.UIRouterGlobals.html +12 -0
  105. package/typedoc/classes/router_params_param.Param.html +34 -0
  106. package/typedoc/classes/router_params_param_factory.ParamFactory.html +6 -0
  107. package/typedoc/classes/router_params_param_type.ParamType.html +35 -0
  108. package/typedoc/classes/router_params_param_types.ParamTypes.html +28 -0
  109. package/typedoc/classes/router_params_state_params.StateParams.html +8 -0
  110. package/typedoc/classes/router_path_path_node.PathNode.html +30 -0
  111. package/typedoc/classes/router_path_path_utils.PathUtils.html +47 -0
  112. package/typedoc/classes/router_resolve_resolvable.Resolvable.html +29 -0
  113. package/typedoc/classes/router_resolve_resolve_context.ResolveContext.html +46 -0
  114. package/typedoc/classes/router_state_state_builder.StateBuilder.html +20 -0
  115. package/typedoc/classes/router_state_state_matcher.StateMatcher.html +6 -0
  116. package/typedoc/classes/router_state_state_object.StateObject.html +45 -0
  117. package/typedoc/classes/router_state_state_queue_manager.StateQueueManager.html +11 -0
  118. package/typedoc/classes/router_state_state_registry.StateRegistry.html +60 -0
  119. package/typedoc/classes/router_state_state_service.StateService.html +232 -0
  120. package/typedoc/classes/router_state_target_state.TargetState.html +72 -0
  121. package/typedoc/classes/router_state_views.Ng1ViewConfig.html +22 -0
  122. package/typedoc/classes/router_template_factory.TemplateFactory.html +56 -0
  123. package/typedoc/classes/router_transition_hook_builder.HookBuilder.html +32 -0
  124. package/typedoc/classes/router_transition_hook_registry.RegisteredHook.html +41 -0
  125. package/typedoc/classes/router_transition_reject_factory.Rejection.html +27 -0
  126. package/typedoc/classes/router_transition_transition.Transition.html +189 -0
  127. package/typedoc/classes/router_transition_transition_event_type.TransitionEventType.html +16 -0
  128. package/typedoc/classes/router_transition_transition_hook.TransitionHook.html +51 -0
  129. package/typedoc/classes/router_transition_transition_service.TransitionService.html +47 -0
  130. package/typedoc/classes/router_url_url_config.UrlConfigProvider.html +57 -0
  131. package/typedoc/classes/router_url_url_matcher.UrlMatcher.html +120 -0
  132. package/typedoc/classes/router_url_url_rule.BaseUrlRule.html +11 -0
  133. package/typedoc/classes/router_url_url_rule.UrlRuleFactory.html +55 -0
  134. package/typedoc/classes/router_url_url_rules.UrlRules.html +150 -0
  135. package/typedoc/classes/router_url_url_service.UrlService.html +138 -0
  136. package/typedoc/classes/router_view_scroll._ViewScrollProvider.html +4 -0
  137. package/typedoc/classes/router_view_view.ViewService.html +109 -0
  138. package/typedoc/classes/services_anchor_scroll.AnchorScrollProvider.html +4 -0
  139. package/typedoc/classes/services_browser.Browser.html +65 -0
  140. package/typedoc/classes/services_browser.BrowserProvider.html +9 -0
  141. package/typedoc/classes/services_cache_factory.CacheFactoryProvider.html +3 -0
  142. package/typedoc/classes/services_cache_factory.TemplateCacheProvider.html +53 -0
  143. package/typedoc/classes/services_http_backend_http_backend._HttpBackendProvider.html +11 -0
  144. package/typedoc/classes/services_http_http._HttpParamSerializerJQLikeProvider.html +31 -0
  145. package/typedoc/classes/services_http_http._HttpParamSerializerProvider.html +21 -0
  146. package/typedoc/classes/services_http_http._HttpProvider.html +19 -0
  147. package/typedoc/classes/services_log._LogProvider.html +9 -0
  148. package/typedoc/classes/services_template_request.TemplateRequestProvider.html +31 -0
  149. package/typedoc/classes/shared_jqlite_jqlite.JQLite.html +62 -0
  150. package/typedoc/enums/core_parser_ast_type.ASTType.html +18 -0
  151. package/typedoc/enums/core_scope_scope.ScopePhase.html +4 -0
  152. package/typedoc/enums/router_transition_reject_factory.RejectType.html +23 -0
  153. package/typedoc/functions/animations_animate.domInsert.html +1 -0
  154. package/typedoc/functions/animations_animate_cache.animateCache.html +29 -0
  155. package/typedoc/functions/animations_animate_children_directive.__AnimateChildrenDirective.html +2 -0
  156. package/typedoc/functions/animations_animate_swap.ngAnimateSwapDirective.html +2 -0
  157. package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +1 -0
  158. package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +1 -0
  159. package/typedoc/functions/animations_shared.applyAnimationStyles.html +1 -0
  160. package/typedoc/functions/animations_shared.applyAnimationToStyles.html +1 -0
  161. package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +1 -0
  162. package/typedoc/functions/animations_shared.applyInlineStyle.html +1 -0
  163. package/typedoc/functions/animations_shared.assertArg.html +1 -0
  164. package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +1 -0
  165. package/typedoc/functions/animations_shared.clearGeneratedClasses.html +1 -0
  166. package/typedoc/functions/animations_shared.concatWithSpace.html +1 -0
  167. package/typedoc/functions/animations_shared.extractElementNode.html +1 -0
  168. package/typedoc/functions/animations_shared.getDomNode.html +1 -0
  169. package/typedoc/functions/animations_shared.mergeAnimationDetails.html +1 -0
  170. package/typedoc/functions/animations_shared.mergeClasses.html +1 -0
  171. package/typedoc/functions/animations_shared.ngMinErr.html +1 -0
  172. package/typedoc/functions/animations_shared.packageStyles.html +1 -0
  173. package/typedoc/functions/animations_shared.pendClasses.html +1 -0
  174. package/typedoc/functions/animations_shared.prepareAnimationOptions.html +1 -0
  175. package/typedoc/functions/animations_shared.removeFromArray.html +1 -0
  176. package/typedoc/functions/animations_shared.resolveElementClasses.html +1 -0
  177. package/typedoc/functions/animations_shared.stripCommentsFromElement.html +1 -0
  178. package/typedoc/functions/core_controller_controller.identifierForController.html +1 -0
  179. package/typedoc/functions/core_di_injector.annotate.html +1 -0
  180. package/typedoc/functions/core_di_injector.createInjector.html +1 -0
  181. package/typedoc/functions/core_exception_handler.errorHandler-1.html +3 -0
  182. package/typedoc/functions/core_location_location.serverBase.html +1 -0
  183. package/typedoc/functions/core_location_location.stripBaseUrl.html +3 -0
  184. package/typedoc/functions/core_location_location.stripFile.html +1 -0
  185. package/typedoc/functions/core_location_location.stripHash.html +1 -0
  186. package/typedoc/functions/core_parser_interpreter.isAssignable.html +1 -0
  187. package/typedoc/functions/core_parser_parse.constantWatchDelegate.html +1 -0
  188. package/typedoc/functions/core_q_q.markQExceptionHandled.html +1 -0
  189. package/typedoc/functions/core_sce_sce.adjustMatcher.html +1 -0
  190. package/typedoc/functions/core_sce_sce.escapeForRegexp.html +1 -0
  191. package/typedoc/functions/core_scope_scope.countChildScopes.html +4 -0
  192. package/typedoc/functions/core_scope_scope.countWatchers.html +5 -0
  193. package/typedoc/functions/core_url_utils_url_utils.getBaseUrl.html +2 -0
  194. package/typedoc/functions/core_url_utils_url_utils.urlIsAllowedOriginFactory.html +8 -0
  195. package/typedoc/functions/core_url_utils_url_utils.urlIsSameOrigin.html +6 -0
  196. package/typedoc/functions/core_url_utils_url_utils.urlIsSameOriginAsBaseUrl.html +7 -0
  197. package/typedoc/functions/core_url_utils_url_utils.urlResolve.html +1 -0
  198. package/typedoc/functions/core_url_utils_url_utils.urlsAreSameOrigin.html +9 -0
  199. package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +2 -0
  200. package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +2 -0
  201. package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +2 -0
  202. package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +2 -0
  203. package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +2 -0
  204. package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +1 -0
  205. package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +2 -0
  206. package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +2 -0
  207. package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +2 -0
  208. package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +2 -0
  209. package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +2 -0
  210. package/typedoc/functions/directive_bind_bind.ngBindDirective.html +1 -0
  211. package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +1 -0
  212. package/typedoc/functions/directive_change_change.ngChangeDirective.html +1 -0
  213. package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +1 -0
  214. package/typedoc/functions/directive_events_events.createEventDirective.html +1 -0
  215. package/typedoc/functions/directive_form_form.addSetValidityMethod.html +1 -0
  216. package/typedoc/functions/directive_form_form.isObjectEmpty.html +1 -0
  217. package/typedoc/functions/directive_form_form.setupValidity.html +1 -0
  218. package/typedoc/functions/directive_if_if.ngIfDirective.html +3 -0
  219. package/typedoc/functions/directive_init_init.ngInitDirective.html +1 -0
  220. package/typedoc/functions/directive_input_input.badInputChecker.html +1 -0
  221. package/typedoc/functions/directive_input_input.countDecimals.html +1 -0
  222. package/typedoc/functions/directive_input_input.createDateInputType.html +1 -0
  223. package/typedoc/functions/directive_input_input.createDateParser.html +1 -0
  224. package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +1 -0
  225. package/typedoc/functions/directive_input_input.inputDirective.html +2 -0
  226. package/typedoc/functions/directive_input_input.isNumberInteger.html +1 -0
  227. package/typedoc/functions/directive_input_input.isValidForStep.html +1 -0
  228. package/typedoc/functions/directive_input_input.ngValueDirective.html +1 -0
  229. package/typedoc/functions/directive_input_input.numberFormatterParser.html +1 -0
  230. package/typedoc/functions/directive_input_input.numberInputType.html +1 -0
  231. package/typedoc/functions/directive_input_input.rangeInputType.html +1 -0
  232. package/typedoc/functions/directive_input_input.weekParser.html +1 -0
  233. package/typedoc/functions/directive_list_list.ngListDirective.html +1 -0
  234. package/typedoc/functions/directive_messages_messages.ngMessageDefaultDirective.html +2 -0
  235. package/typedoc/functions/directive_messages_messages.ngMessageDirective.html +2 -0
  236. package/typedoc/functions/directive_messages_messages.ngMessageExpDirective.html +2 -0
  237. package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +2 -0
  238. package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +2 -0
  239. package/typedoc/functions/directive_model_model.ngModelDirective.html +2 -0
  240. package/typedoc/functions/directive_model_model.ngModelMinErr.html +1 -0
  241. package/typedoc/functions/directive_model_options_model_options.ngModelOptionsDirective.html +1 -0
  242. package/typedoc/functions/directive_non_bindable_non_bindable.ngNonBindableDirective.html +1 -0
  243. package/typedoc/functions/directive_select_select.optionDirective.html +2 -0
  244. package/typedoc/functions/directive_select_select.selectDirective.html +1 -0
  245. package/typedoc/functions/directive_show_hide_show_hide.ngHideDirective.html +2 -0
  246. package/typedoc/functions/directive_show_hide_show_hide.ngShowDirective.html +2 -0
  247. package/typedoc/functions/directive_style_style.ngStyleDirective.html +1 -0
  248. package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +1 -0
  249. package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +1 -0
  250. package/typedoc/functions/filters_filter.filterFilter.html +1 -0
  251. package/typedoc/functions/filters_filters.formatNumber.html +7 -0
  252. package/typedoc/functions/filters_filters.jsonFilter.html +1 -0
  253. package/typedoc/functions/filters_limit_to.limitToFilter.html +1 -0
  254. package/typedoc/functions/filters_order_by.orderByFilter.html +2 -0
  255. package/typedoc/functions/public.publishExternalAPI.html +3 -0
  256. package/typedoc/functions/router.initRouter.html +1 -0
  257. package/typedoc/functions/router_directives_state_directives._StateRefActiveDirective.html +2 -0
  258. package/typedoc/functions/router_directives_state_directives._StateRefDirective.html +2 -0
  259. package/typedoc/functions/router_directives_state_directives._StateRefDynamicDirective.html +2 -0
  260. package/typedoc/functions/router_directives_view_directive._ViewDirectiveFill.html +2 -0
  261. package/typedoc/functions/router_hooks_core_resolvables.registerAddCoreResolvables.html +1 -0
  262. package/typedoc/functions/router_hooks_core_resolvables.treeChangesCleanup.html +1 -0
  263. package/typedoc/functions/router_hooks_ignored_transition.registerIgnoredTransitionHook.html +1 -0
  264. package/typedoc/functions/router_hooks_invalid_transition.registerInvalidTransitionHook.html +1 -0
  265. package/typedoc/functions/router_hooks_lazy_load.lazyLoadState.html +5 -0
  266. package/typedoc/functions/router_hooks_lazy_load.registerLazyLoadHook.html +31 -0
  267. package/typedoc/functions/router_hooks_on_enter_exit_retain.registerOnEnterHook.html +1 -0
  268. package/typedoc/functions/router_hooks_on_enter_exit_retain.registerOnExitHook.html +1 -0
  269. package/typedoc/functions/router_hooks_on_enter_exit_retain.registerOnRetainHook.html +1 -0
  270. package/typedoc/functions/router_hooks_redirect_to.registerRedirectToHook.html +1 -0
  271. package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +1 -0
  272. package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +1 -0
  273. package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +1 -0
  274. package/typedoc/functions/router_hooks_update_globals.registerUpdateGlobalState.html +1 -0
  275. package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +1 -0
  276. package/typedoc/functions/router_hooks_views.registerActivateViews.html +1 -0
  277. package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +1 -0
  278. package/typedoc/functions/router_services.runBlock.html +2 -0
  279. package/typedoc/functions/router_services.watchDigests.html +2 -0
  280. package/typedoc/functions/router_state_filters._IncludedByStateFilter.html +7 -0
  281. package/typedoc/functions/router_state_filters._IsStateFilter.html +7 -0
  282. package/typedoc/functions/router_state_state_builder.resolvablesBuilder.html +30 -0
  283. package/typedoc/functions/router_state_state_registry.getLocals.html +1 -0
  284. package/typedoc/functions/router_state_views.getNg1ViewConfigFactory.html +1 -0
  285. package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +6 -0
  286. package/typedoc/functions/router_transition_hook_registry.makeEvent.html +2 -0
  287. package/typedoc/functions/router_transition_hook_registry.matchState.html +9 -0
  288. package/typedoc/functions/services_browser.trimEmptyHash.html +2 -0
  289. package/typedoc/functions/services_cookie_reader.getCookies.html +2 -0
  290. package/typedoc/functions/services_http_backend_http_backend.createHttpBackend.html +1 -0
  291. package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +1 -0
  292. package/typedoc/functions/shared_common._removeFrom.html +1 -0
  293. package/typedoc/functions/shared_common.allTrueR.html +5 -0
  294. package/typedoc/functions/shared_common.ancestors.html +5 -0
  295. package/typedoc/functions/shared_common.anyTrueR.html +8 -0
  296. package/typedoc/functions/shared_common.applyPairs.html +7 -0
  297. package/typedoc/functions/shared_common.arrayTuples.html +6 -0
  298. package/typedoc/functions/shared_common.assertFn.html +1 -0
  299. package/typedoc/functions/shared_common.assertMap.html +5 -0
  300. package/typedoc/functions/shared_common.assertPredicate.html +5 -0
  301. package/typedoc/functions/shared_common.copy.html +2 -0
  302. package/typedoc/functions/shared_common.createProxyFunctions.html +17 -0
  303. package/typedoc/functions/shared_common.defaults.html +4 -0
  304. package/typedoc/functions/shared_common.deregAll.html +2 -0
  305. package/typedoc/functions/shared_common.equals.html +1 -0
  306. package/typedoc/functions/shared_common.filter.html +2 -0
  307. package/typedoc/functions/shared_common.find.html +2 -0
  308. package/typedoc/functions/shared_common.flatten.html +5 -0
  309. package/typedoc/functions/shared_common.flattenR.html +5 -0
  310. package/typedoc/functions/shared_common.forEach.html +1 -0
  311. package/typedoc/functions/shared_common.inherit.html +8 -0
  312. package/typedoc/functions/shared_common.map.html +2 -0
  313. package/typedoc/functions/shared_common.mapObj.html +3 -0
  314. package/typedoc/functions/shared_common.mergeR.html +2 -0
  315. package/typedoc/functions/shared_common.omit.html +7 -0
  316. package/typedoc/functions/shared_common.pairs.html +5 -0
  317. package/typedoc/functions/shared_common.pick.html +7 -0
  318. package/typedoc/functions/shared_common.pluck.html +2 -0
  319. package/typedoc/functions/shared_common.pushR.html +3 -0
  320. package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +1 -0
  321. package/typedoc/functions/shared_common.silentRejection.html +1 -0
  322. package/typedoc/functions/shared_common.tail.html +2 -0
  323. package/typedoc/functions/shared_common.uniqR.html +2 -0
  324. package/typedoc/functions/shared_common.unnest.html +5 -0
  325. package/typedoc/functions/shared_common.unnestR.html +5 -0
  326. package/typedoc/functions/shared_hof.all.html +4 -0
  327. package/typedoc/functions/shared_hof.and.html +3 -0
  328. package/typedoc/functions/shared_hof.any.html +1 -0
  329. package/typedoc/functions/shared_hof.compose.html +5 -0
  330. package/typedoc/functions/shared_hof.curry.html +11 -0
  331. package/typedoc/functions/shared_hof.eq.html +2 -0
  332. package/typedoc/functions/shared_hof.invoke.html +1 -0
  333. package/typedoc/functions/shared_hof.is.html +2 -0
  334. package/typedoc/functions/shared_hof.or.html +3 -0
  335. package/typedoc/functions/shared_hof.parse.html +7 -0
  336. package/typedoc/functions/shared_hof.pattern.html +15 -0
  337. package/typedoc/functions/shared_hof.pipe.html +5 -0
  338. package/typedoc/functions/shared_hof.prop.html +5 -0
  339. package/typedoc/functions/shared_hof.val.html +2 -0
  340. package/typedoc/functions/shared_jqlite_jqlite.buildFragment.html +1 -0
  341. package/typedoc/functions/shared_jqlite_jqlite.cleanElementData.html +3 -0
  342. package/typedoc/functions/shared_jqlite_jqlite.dealoc.html +1 -0
  343. package/typedoc/functions/shared_jqlite_jqlite.getBlockNodes.html +4 -0
  344. package/typedoc/functions/shared_jqlite_jqlite.getBooleanAttrName.html +1 -0
  345. package/typedoc/functions/shared_jqlite_jqlite.getOrSetCacheData.html +8 -0
  346. package/typedoc/functions/shared_jqlite_jqlite.isTextNode.html +3 -0
  347. package/typedoc/functions/shared_jqlite_jqlite.kebabToCamel.html +3 -0
  348. package/typedoc/functions/shared_jqlite_jqlite.removeElement.html +1 -0
  349. package/typedoc/functions/shared_jqlite_jqlite.removeElementData.html +5 -0
  350. package/typedoc/functions/shared_jqlite_jqlite.snakeToCamel.html +2 -0
  351. package/typedoc/functions/shared_jqlite_jqlite.startingTag.html +2 -0
  352. package/typedoc/functions/shared_predicates.isInjectable.html +4 -0
  353. package/typedoc/functions/shared_predicates.isNull.html +1 -0
  354. package/typedoc/functions/shared_predicates.isNullOrUndefined.html +1 -0
  355. package/typedoc/functions/shared_predicates.isPromise.html +3 -0
  356. package/typedoc/functions/shared_strings.beforeAfterSubstr.html +2 -0
  357. package/typedoc/functions/shared_strings.fnToString.html +1 -0
  358. package/typedoc/functions/shared_strings.functionToString.html +1 -0
  359. package/typedoc/functions/shared_strings.joinNeighborsR.html +7 -0
  360. package/typedoc/functions/shared_strings.kebobString.html +1 -0
  361. package/typedoc/functions/shared_strings.maxLength.html +6 -0
  362. package/typedoc/functions/shared_strings.padString.html +6 -0
  363. package/typedoc/functions/shared_strings.splitEqual.html +1 -0
  364. package/typedoc/functions/shared_strings.splitHash.html +1 -0
  365. package/typedoc/functions/shared_strings.splitOnDelim.html +5 -0
  366. package/typedoc/functions/shared_strings.splitQuery.html +1 -0
  367. package/typedoc/functions/shared_strings.stringify.html +1 -0
  368. package/typedoc/functions/shared_strings.stripLastPathElement.html +1 -0
  369. package/typedoc/functions/shared_strings.trimHashVal.html +1 -0
  370. package/typedoc/functions/shared_utils.addDateMinutes.html +1 -0
  371. package/typedoc/functions/shared_utils.arrayRemove.html +7 -0
  372. package/typedoc/functions/shared_utils.assert.html +2 -0
  373. package/typedoc/functions/shared_utils.assertArg.html +2 -0
  374. package/typedoc/functions/shared_utils.assertArgFn.html +1 -0
  375. package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +4 -0
  376. package/typedoc/functions/shared_utils.baseExtend.html +1 -0
  377. package/typedoc/functions/shared_utils.bind.html +8 -0
  378. package/typedoc/functions/shared_utils.concat.html +1 -0
  379. package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +1 -0
  380. package/typedoc/functions/shared_utils.csp.html +1 -0
  381. package/typedoc/functions/shared_utils.directiveNormalize.html +3 -0
  382. package/typedoc/functions/shared_utils.encodeUriQuery.html +10 -0
  383. package/typedoc/functions/shared_utils.encodeUriSegment.html +10 -0
  384. package/typedoc/functions/shared_utils.equals.html +22 -0
  385. package/typedoc/functions/shared_utils.errorHandlingConfig-1.html +1 -0
  386. package/typedoc/functions/shared_utils.extend.html +9 -0
  387. package/typedoc/functions/shared_utils.forEach.html +18 -0
  388. package/typedoc/functions/shared_utils.forEachSorted.html +1 -0
  389. package/typedoc/functions/shared_utils.fromJson.html +4 -0
  390. package/typedoc/functions/shared_utils.getNgAttribute.html +1 -0
  391. package/typedoc/functions/shared_utils.getNodeName.html +3 -0
  392. package/typedoc/functions/shared_utils.getter.html +5 -0
  393. package/typedoc/functions/shared_utils.hasAnimate.html +2 -0
  394. package/typedoc/functions/shared_utils.hasCustomToString.html +1 -0
  395. package/typedoc/functions/shared_utils.hashKey.html +9 -0
  396. package/typedoc/functions/shared_utils.includes.html +1 -0
  397. package/typedoc/functions/shared_utils.inherit.html +1 -0
  398. package/typedoc/functions/shared_utils.isArrayBuffer.html +1 -0
  399. package/typedoc/functions/shared_utils.isArrayLike.html +3 -0
  400. package/typedoc/functions/shared_utils.isBlankObject.html +3 -0
  401. package/typedoc/functions/shared_utils.isBlob.html +1 -0
  402. package/typedoc/functions/shared_utils.isBoolean.html +1 -0
  403. package/typedoc/functions/shared_utils.isDate.html +1 -0
  404. package/typedoc/functions/shared_utils.isDefined.html +4 -0
  405. package/typedoc/functions/shared_utils.isElement.html +1 -0
  406. package/typedoc/functions/shared_utils.isError.html +5 -0
  407. package/typedoc/functions/shared_utils.isFile.html +1 -0
  408. package/typedoc/functions/shared_utils.isFormData.html +1 -0
  409. package/typedoc/functions/shared_utils.isFunction.html +4 -0
  410. package/typedoc/functions/shared_utils.isNumber.html +8 -0
  411. package/typedoc/functions/shared_utils.isNumberNaN.html +1 -0
  412. package/typedoc/functions/shared_utils.isObject.html +5 -0
  413. package/typedoc/functions/shared_utils.isPromiseLike.html +1 -0
  414. package/typedoc/functions/shared_utils.isRegExp.html +4 -0
  415. package/typedoc/functions/shared_utils.isScope.html +1 -0
  416. package/typedoc/functions/shared_utils.isString.html +4 -0
  417. package/typedoc/functions/shared_utils.isTypedArray.html +1 -0
  418. package/typedoc/functions/shared_utils.isUndefined.html +4 -0
  419. package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +1 -0
  420. package/typedoc/functions/shared_utils.isWindow.html +4 -0
  421. package/typedoc/functions/shared_utils.lowercase.html +4 -0
  422. package/typedoc/functions/shared_utils.merge.html +22 -0
  423. package/typedoc/functions/shared_utils.mergeClasses.html +1 -0
  424. package/typedoc/functions/shared_utils.minErr.html +19 -0
  425. package/typedoc/functions/shared_utils.nextUid.html +6 -0
  426. package/typedoc/functions/shared_utils.parseKeyValue.html +2 -0
  427. package/typedoc/functions/shared_utils.reverseParams.html +2 -0
  428. package/typedoc/functions/shared_utils.setHashKey.html +4 -0
  429. package/typedoc/functions/shared_utils.shallowCopy.html +3 -0
  430. package/typedoc/functions/shared_utils.simpleCompare.html +1 -0
  431. package/typedoc/functions/shared_utils.sliceArgs.html +1 -0
  432. package/typedoc/functions/shared_utils.snakeCase.html +1 -0
  433. package/typedoc/functions/shared_utils.stringify.html +1 -0
  434. package/typedoc/functions/shared_utils.timezoneToOffset.html +1 -0
  435. package/typedoc/functions/shared_utils.toDebugString.html +1 -0
  436. package/typedoc/functions/shared_utils.toInt.html +1 -0
  437. package/typedoc/functions/shared_utils.toJson.html +14 -0
  438. package/typedoc/functions/shared_utils.toKeyValue.html +1 -0
  439. package/typedoc/functions/shared_utils.trim.html +1 -0
  440. package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +3 -0
  441. package/typedoc/functions/shared_utils.uppercase.html +4 -0
  442. package/typedoc/functions/shared_utils.valueFn.html +1 -0
  443. package/typedoc/hierarchy.html +1 -0
  444. package/typedoc/index.html +87 -0
  445. package/typedoc/interfaces/animations_animate.AnimationOptions.html +9 -0
  446. package/typedoc/interfaces/animations_raf_scheduler.RafSchedulerObject.html +3 -0
  447. package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +4 -0
  448. package/typedoc/interfaces/core_compile_attributes.AttributeLike.html +2 -0
  449. package/typedoc/interfaces/core_location_location.DefaultPorts.html +4 -0
  450. package/typedoc/interfaces/core_location_location.Html5Mode.html +4 -0
  451. package/typedoc/interfaces/core_parser_ast.ASTNode.html +46 -0
  452. package/typedoc/interfaces/core_parser_lexer.LexerOptions.html +5 -0
  453. package/typedoc/interfaces/core_parser_lexer.Token.html +13 -0
  454. package/typedoc/interfaces/core_parser_parse.CompiledExpressionProps.html +11 -0
  455. package/typedoc/interfaces/core_parser_parser.ParsedAST.html +5 -0
  456. package/typedoc/interfaces/core_q_q.Deferred.html +9 -0
  457. package/typedoc/interfaces/core_q_q.QPromise.html +12 -0
  458. package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +4 -0
  459. package/typedoc/interfaces/directive_model_options_model_options.ModelOptionsConfig.html +10 -0
  460. package/typedoc/interfaces/loader.AngularBootstrapConfig.html +3 -0
  461. package/typedoc/interfaces/router_template_factory.BindingTuple.html +3 -0
  462. package/typedoc/interfaces/services_anchor_scroll.AnchorScrollObject.html +2 -0
  463. package/typedoc/interfaces/services_log.LogService.html +11 -0
  464. package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +8 -0
  465. package/typedoc/interfaces/types.Annotated.html +2 -0
  466. package/typedoc/interfaces/types.ChangesObject.html +8 -0
  467. package/typedoc/interfaces/types.Controller.html +32 -0
  468. package/typedoc/interfaces/types.Directive.html +35 -0
  469. package/typedoc/interfaces/types.DirectivePrePost.html +5 -0
  470. package/typedoc/interfaces/types.FormController.html +39 -0
  471. package/typedoc/interfaces/types.Module.html +30 -0
  472. package/typedoc/interfaces/types.NgModelController.html +59 -0
  473. package/typedoc/interfaces/types.NgModelOptions.html +15 -0
  474. package/typedoc/interfaces/types.OnChangesObject.html +5 -0
  475. package/typedoc/interfaces/types.ServiceProviderClass.html +3 -0
  476. package/typedoc/interfaces/types.TranscludeFunctionObject.html +5 -0
  477. package/typedoc/media/CONTRIBUTING.md +246 -0
  478. package/typedoc/media/DEVELOPERS.md +488 -0
  479. package/typedoc/modules/animations_animate.html +5 -0
  480. package/typedoc/modules/animations_animate_cache.html +3 -0
  481. package/typedoc/modules/animations_animate_children_directive.html +2 -0
  482. package/typedoc/modules/animations_animate_css.html +2 -0
  483. package/typedoc/modules/animations_animate_css_driver.html +2 -0
  484. package/typedoc/modules/animations_animate_js.html +2 -0
  485. package/typedoc/modules/animations_animate_js_driver.html +2 -0
  486. package/typedoc/modules/animations_animate_queue.html +2 -0
  487. package/typedoc/modules/animations_animate_runner.html +4 -0
  488. package/typedoc/modules/animations_animate_swap.html +2 -0
  489. package/typedoc/modules/animations_animation.html +2 -0
  490. package/typedoc/modules/animations_raf_scheduler.html +5 -0
  491. package/typedoc/modules/animations_shared.html +45 -0
  492. package/typedoc/modules/core_cache_cache.html +4 -0
  493. package/typedoc/modules/core_compile_attributes.html +3 -0
  494. package/typedoc/modules/core_compile_compile.html +3 -0
  495. package/typedoc/modules/core_controller_controller.html +3 -0
  496. package/typedoc/modules/core_di_injector.html +4 -0
  497. package/typedoc/modules/core_di_internal_injector.html +3 -0
  498. package/typedoc/modules/core_di_ng_module.html +8 -0
  499. package/typedoc/modules/core_exception_handler.html +5 -0
  500. package/typedoc/modules/core_filter_filter.html +2 -0
  501. package/typedoc/modules/core_interpolate_interpolate.html +2 -0
  502. package/typedoc/modules/core_interval_interval.html +3 -0
  503. package/typedoc/modules/core_interval_interval_factory.html +2 -0
  504. package/typedoc/modules/core_location_location.html +11 -0
  505. package/typedoc/modules/core_parser_ast.html +4 -0
  506. package/typedoc/modules/core_parser_ast_type.html +2 -0
  507. package/typedoc/modules/core_parser_interpreter.html +6 -0
  508. package/typedoc/modules/core_parser_lexer.html +4 -0
  509. package/typedoc/modules/core_parser_parse.html +7 -0
  510. package/typedoc/modules/core_parser_parser.html +3 -0
  511. package/typedoc/modules/core_pubsub_pubsub.html +3 -0
  512. package/typedoc/modules/core_q_q.html +6 -0
  513. package/typedoc/modules/core_sanitize_sanitize_uri.html +2 -0
  514. package/typedoc/modules/core_sce_sce.html +6 -0
  515. package/typedoc/modules/core_scope_scope.html +14 -0
  516. package/typedoc/modules/core_task_tracker_factory.html +3 -0
  517. package/typedoc/modules/core_timeout_timeout.html +2 -0
  518. package/typedoc/modules/core_url_utils_url_utils.html +8 -0
  519. package/typedoc/modules/directive_aria_aria.html +13 -0
  520. package/typedoc/modules/directive_attrs_attrs.html +3 -0
  521. package/typedoc/modules/directive_bind_bind.html +4 -0
  522. package/typedoc/modules/directive_change_change.html +2 -0
  523. package/typedoc/modules/directive_class_class.html +4 -0
  524. package/typedoc/modules/directive_cloak_cloak.html +2 -0
  525. package/typedoc/modules/directive_controller_controller.html +2 -0
  526. package/typedoc/modules/directive_events_events.html +3 -0
  527. package/typedoc/modules/directive_form_form.html +9 -0
  528. package/typedoc/modules/directive_if_if.html +2 -0
  529. package/typedoc/modules/directive_include_include.html +3 -0
  530. package/typedoc/modules/directive_init_init.html +2 -0
  531. package/typedoc/modules/directive_input_input.html +18 -0
  532. package/typedoc/modules/directive_list_list.html +2 -0
  533. package/typedoc/modules/directive_messages_messages.html +6 -0
  534. package/typedoc/modules/directive_model_model.html +4 -0
  535. package/typedoc/modules/directive_model_options_model_options.html +4 -0
  536. package/typedoc/modules/directive_non_bindable_non_bindable.html +2 -0
  537. package/typedoc/modules/directive_options_options.html +2 -0
  538. package/typedoc/modules/directive_ref_ref.html +2 -0
  539. package/typedoc/modules/directive_repeat_repeat.html +2 -0
  540. package/typedoc/modules/directive_script_script.html +2 -0
  541. package/typedoc/modules/directive_select_select.html +3 -0
  542. package/typedoc/modules/directive_show_hide_show_hide.html +3 -0
  543. package/typedoc/modules/directive_style_style.html +2 -0
  544. package/typedoc/modules/directive_switch_switch.html +4 -0
  545. package/typedoc/modules/directive_transclude_transclude.html +2 -0
  546. package/typedoc/modules/directive_validators_validators.html +5 -0
  547. package/typedoc/modules/filters_filter.html +2 -0
  548. package/typedoc/modules/filters_filters.html +3 -0
  549. package/typedoc/modules/filters_limit_to.html +2 -0
  550. package/typedoc/modules/filters_order_by.html +2 -0
  551. package/typedoc/modules/index.html +2 -0
  552. package/typedoc/modules/loader.html +3 -0
  553. package/typedoc/modules/public.html +3 -0
  554. package/typedoc/modules/router.html +2 -0
  555. package/typedoc/modules/router_common_coreservices.html +2 -0
  556. package/typedoc/modules/router_common_glob.html +103 -0
  557. package/typedoc/modules/router_common_queue.html +2 -0
  558. package/typedoc/modules/router_common_trace.html +20 -0
  559. package/typedoc/modules/router_directives_state_directives.html +4 -0
  560. package/typedoc/modules/router_directives_view_directive.html +3 -0
  561. package/typedoc/modules/router_globals.html +2 -0
  562. package/typedoc/modules/router_hooks_core_resolvables.html +3 -0
  563. package/typedoc/modules/router_hooks_ignored_transition.html +2 -0
  564. package/typedoc/modules/router_hooks_invalid_transition.html +2 -0
  565. package/typedoc/modules/router_hooks_lazy_load.html +3 -0
  566. package/typedoc/modules/router_hooks_on_enter_exit_retain.html +4 -0
  567. package/typedoc/modules/router_hooks_redirect_to.html +2 -0
  568. package/typedoc/modules/router_hooks_resolve.html +5 -0
  569. package/typedoc/modules/router_hooks_update_globals.html +2 -0
  570. package/typedoc/modules/router_hooks_url.html +2 -0
  571. package/typedoc/modules/router_hooks_views.html +3 -0
  572. package/typedoc/modules/router_params_param.html +3 -0
  573. package/typedoc/modules/router_params_param_factory.html +2 -0
  574. package/typedoc/modules/router_params_param_type.html +2 -0
  575. package/typedoc/modules/router_params_param_types.html +2 -0
  576. package/typedoc/modules/router_params_state_params.html +2 -0
  577. package/typedoc/modules/router_path_path_node.html +2 -0
  578. package/typedoc/modules/router_path_path_utils.html +2 -0
  579. package/typedoc/modules/router_resolve_resolvable.html +3 -0
  580. package/typedoc/modules/router_resolve_resolve_context.html +4 -0
  581. package/typedoc/modules/router_services.html +3 -0
  582. package/typedoc/modules/router_state_filters.html +3 -0
  583. package/typedoc/modules/router_state_state_builder.html +3 -0
  584. package/typedoc/modules/router_state_state_matcher.html +2 -0
  585. package/typedoc/modules/router_state_state_object.html +2 -0
  586. package/typedoc/modules/router_state_state_queue_manager.html +2 -0
  587. package/typedoc/modules/router_state_state_registry.html +3 -0
  588. package/typedoc/modules/router_state_state_service.html +2 -0
  589. package/typedoc/modules/router_state_target_state.html +2 -0
  590. package/typedoc/modules/router_state_views.html +4 -0
  591. package/typedoc/modules/router_template_factory.html +3 -0
  592. package/typedoc/modules/router_transition_hook_builder.html +2 -0
  593. package/typedoc/modules/router_transition_hook_registry.html +4 -0
  594. package/typedoc/modules/router_transition_interface.html +3 -0
  595. package/typedoc/modules/router_transition_reject_factory.html +3 -0
  596. package/typedoc/modules/router_transition_transition.html +2 -0
  597. package/typedoc/modules/router_transition_transition_event_type.html +2 -0
  598. package/typedoc/modules/router_transition_transition_hook.html +2 -0
  599. package/typedoc/modules/router_transition_transition_service.html +3 -0
  600. package/typedoc/modules/router_url_url_config.html +2 -0
  601. package/typedoc/modules/router_url_url_matcher.html +2 -0
  602. package/typedoc/modules/router_url_url_rule.html +3 -0
  603. package/typedoc/modules/router_url_url_rules.html +2 -0
  604. package/typedoc/modules/router_url_url_service.html +2 -0
  605. package/typedoc/modules/router_view_scroll.html +2 -0
  606. package/typedoc/modules/router_view_view.html +2 -0
  607. package/typedoc/modules/services_anchor_scroll.html +5 -0
  608. package/typedoc/modules/services_browser.html +5 -0
  609. package/typedoc/modules/services_cache_factory.html +3 -0
  610. package/typedoc/modules/services_cookie_reader.html +2 -0
  611. package/typedoc/modules/services_http_backend_http_backend.html +3 -0
  612. package/typedoc/modules/services_http_http.html +5 -0
  613. package/typedoc/modules/services_log.html +6 -0
  614. package/typedoc/modules/services_template_request.html +2 -0
  615. package/typedoc/modules/shared_common.html +37 -0
  616. package/typedoc/modules/shared_constants.html +12 -0
  617. package/typedoc/modules/shared_hof.html +18 -0
  618. package/typedoc/modules/shared_jqlite_jqlite.html +15 -0
  619. package/typedoc/modules/shared_predicates.html +5 -0
  620. package/typedoc/modules/shared_strings.html +18 -0
  621. package/typedoc/modules/shared_utils.html +76 -0
  622. package/typedoc/modules/types.html +37 -0
  623. package/typedoc/types/animations_animate.AnimationMethod.html +1 -0
  624. package/typedoc/types/animations_raf_scheduler.RafScheduler.html +1 -0
  625. package/typedoc/types/animations_raf_scheduler.RafSchedulerFunction.html +1 -0
  626. package/typedoc/types/core_compile_compile.CompositeLinkFn.html +1 -0
  627. package/typedoc/types/core_exception_handler.ErrorHandler.html +3 -0
  628. package/typedoc/types/core_exception_handler.ExceptionHandlerProvider.html +1 -0
  629. package/typedoc/types/core_interval_interval.IntervalId.html +2 -0
  630. package/typedoc/types/core_parser_interpreter.DecoratedASTNode.html +1 -0
  631. package/typedoc/types/core_parser_parse.CompiledExpression.html +1 -0
  632. package/typedoc/types/core_parser_parse.CompiledExpressionFunction.html +1 -0
  633. package/typedoc/types/core_parser_parse.ParseService.html +1 -0
  634. package/typedoc/types/core_scope_scope.TTL.html +2 -0
  635. package/typedoc/types/core_scope_scope.WatchExpression.html +1 -0
  636. package/typedoc/types/core_scope_scope.WatchListener.html +2 -0
  637. package/typedoc/types/core_url_utils_url_utils.HttpProtocol.html +1 -0
  638. package/typedoc/types/services_anchor_scroll.AnchorScrollFunction.html +1 -0
  639. package/typedoc/types/services_anchor_scroll.AnchorScrollService.html +1 -0
  640. package/typedoc/types/services_browser.UrlChangeListener.html +1 -0
  641. package/typedoc/types/services_log.LogCall.html +1 -0
  642. package/typedoc/types/types.AnnotatedFunction.html +1 -0
  643. package/typedoc/types/types.AsyncModelValidators.html +1 -0
  644. package/typedoc/types/types.Attributes.html +1 -0
  645. package/typedoc/types/types.BootstrapConfig.html +1 -0
  646. package/typedoc/types/types.CloneAttachFunction.html +2 -0
  647. package/typedoc/types/types.ComponentOptions.html +1 -0
  648. package/typedoc/types/types.ControllerConstructor.html +1 -0
  649. package/typedoc/types/types.DirectiveCompileFn.html +3 -0
  650. package/typedoc/types/types.DirectiveController.html +1 -0
  651. package/typedoc/types/types.DirectiveFactory.html +1 -0
  652. package/typedoc/types/types.DirectiveLinkFn.html +1 -0
  653. package/typedoc/types/types.FilterFactory.html +1 -0
  654. package/typedoc/types/types.FilterFunction.html +1 -0
  655. package/typedoc/types/types.Injectable.html +1 -0
  656. package/typedoc/types/types.ModelValidators.html +1 -0
  657. package/typedoc/types/types.ServiceProviderFactory.html +1 -0
  658. package/typedoc/types/types.TAttributes.html +1 -0
  659. package/typedoc/types/types.TController.html +1 -0
  660. package/typedoc/types/types.TElement.html +1 -0
  661. package/typedoc/types/types.TScope.html +1 -0
  662. package/typedoc/types/types.TranscludeFunction.html +1 -0
  663. package/typedoc/types/types.transcludeWithScope.html +1 -0
  664. package/typedoc/types/types.transcludeWithoutScope.html +1 -0
  665. package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +1 -0
  666. package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +1 -0
  667. package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +1 -0
  668. package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +1 -0
  669. package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +1 -0
  670. package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +1 -0
  671. package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +1 -0
  672. package/typedoc/variables/animations_shared.ANIMATION_PROP.html +1 -0
  673. package/typedoc/variables/animations_shared.CSS_PREFIX.html +1 -0
  674. package/typedoc/variables/animations_shared.DELAY_KEY.html +1 -0
  675. package/typedoc/variables/animations_shared.DURATION_KEY.html +1 -0
  676. package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +1 -0
  677. package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +1 -0
  678. package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +1 -0
  679. package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +1 -0
  680. package/typedoc/variables/animations_shared.PROPERTY_KEY.html +1 -0
  681. package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +1 -0
  682. package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +1 -0
  683. package/typedoc/variables/animations_shared.TIMING_KEY.html +1 -0
  684. package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +1 -0
  685. package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +1 -0
  686. package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +1 -0
  687. package/typedoc/variables/animations_shared.TRANSITION_PROP.html +1 -0
  688. package/typedoc/variables/core_cache_cache.CACHE.html +5 -0
  689. package/typedoc/variables/core_cache_cache.EXPANDO.html +1 -0
  690. package/typedoc/variables/core_di_injector.path.html +1 -0
  691. package/typedoc/variables/core_di_ng_module.ANIMATION_LITERAL.html +1 -0
  692. package/typedoc/variables/core_di_ng_module.COMPILE_LITERAL.html +1 -0
  693. package/typedoc/variables/core_di_ng_module.CONTROLLER_LITERAL.html +1 -0
  694. package/typedoc/variables/core_di_ng_module.FILTER_LITERAL.html +1 -0
  695. package/typedoc/variables/core_di_ng_module.INJECTOR_LITERAL.html +1 -0
  696. package/typedoc/variables/core_di_ng_module.PROVIDE_LITERAL.html +1 -0
  697. package/typedoc/variables/core_parser_ast.literals.html +1 -0
  698. package/typedoc/variables/core_parser_interpreter.PURITY_ABSOLUTE.html +1 -0
  699. package/typedoc/variables/core_parser_interpreter.PURITY_RELATIVE.html +1 -0
  700. package/typedoc/variables/core_pubsub_pubsub.EventBus.html +1 -0
  701. package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +1 -0
  702. package/typedoc/variables/core_scope_scope.TTL-1.html +4 -0
  703. package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +1 -0
  704. package/typedoc/variables/core_scope_scope.__asyncQueue.html +1 -0
  705. package/typedoc/variables/core_scope_scope.__postDigestQueue.html +1 -0
  706. package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +1 -0
  707. package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +1 -0
  708. package/typedoc/variables/directive_bind_bind.ngBindHtmlDirective.html +2 -0
  709. package/typedoc/variables/directive_class_class.ngClassDirective.html +58 -0
  710. package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +27 -0
  711. package/typedoc/variables/directive_class_class.ngClassOddDirective.html +27 -0
  712. package/typedoc/variables/directive_controller_controller.ngControllerDirective.html +1 -0
  713. package/typedoc/variables/directive_events_events.ngEventDirectives.html +1 -0
  714. package/typedoc/variables/directive_form_form.PENDING_CLASS.html +1 -0
  715. package/typedoc/variables/directive_form_form.formDirective.html +1 -0
  716. package/typedoc/variables/directive_form_form.ngFormDirective.html +1 -0
  717. package/typedoc/variables/directive_form_form.nullFormCtrl.html +1 -0
  718. package/typedoc/variables/directive_include_include.ngIncludeDirective.html +1 -0
  719. package/typedoc/variables/directive_include_include.ngIncludeFillContentDirective.html +1 -0
  720. package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +1 -0
  721. package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +1 -0
  722. package/typedoc/variables/directive_input_input.URL_REGEXP.html +1 -0
  723. package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +1 -0
  724. package/typedoc/variables/directive_model_options_model_options.defaultModelOptions.html +1 -0
  725. package/typedoc/variables/directive_options_options.ngOptionsDirective.html +1 -0
  726. package/typedoc/variables/directive_ref_ref.ngRefDirective.html +1 -0
  727. package/typedoc/variables/directive_repeat_repeat.ngRepeatDirective.html +1 -0
  728. package/typedoc/variables/directive_script_script.scriptDirective.html +1 -0
  729. package/typedoc/variables/directive_switch_switch.ngSwitchDirective.html +1 -0
  730. package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +1 -0
  731. package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +22 -0
  732. package/typedoc/variables/directive_validators_validators.minlengthDirective.html +22 -0
  733. package/typedoc/variables/directive_validators_validators.patternDirective.html +36 -0
  734. package/typedoc/variables/directive_validators_validators.requiredDirective.html +16 -0
  735. package/typedoc/variables/index.angular.html +1 -0
  736. package/typedoc/variables/public.VERSION.html +1 -0
  737. package/typedoc/variables/router_common_coreservices.services.html +1 -0
  738. package/typedoc/variables/router_common_trace.Category.html +7 -0
  739. package/typedoc/variables/router_common_trace.trace-1.html +5 -0
  740. package/typedoc/variables/router_directives_view_directive.ngView.html +59 -0
  741. package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +1 -0
  742. package/typedoc/variables/router_params_param.DefType.html +1 -0
  743. package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +1 -0
  744. package/typedoc/variables/router_resolve_resolve_context.NATIVE_INJECTOR_TOKEN.html +1 -0
  745. package/typedoc/variables/router_resolve_resolve_context.resolvePolicies.html +1 -0
  746. package/typedoc/variables/router_transition_interface.TransitionHookPhase.html +2 -0
  747. package/typedoc/variables/router_transition_interface.TransitionHookScope.html +2 -0
  748. package/typedoc/variables/router_transition_transition_service.defaultTransOpts.html +5 -0
  749. package/typedoc/variables/services_log.LogService-1.html +1 -0
  750. package/typedoc/variables/shared_common.pushTo.html +2 -0
  751. package/typedoc/variables/shared_common.removeFrom.html +3 -0
  752. package/typedoc/variables/shared_constants.ALIASED_ATTR.html +1 -0
  753. package/typedoc/variables/shared_constants.DIRTY_CLASS.html +1 -0
  754. package/typedoc/variables/shared_constants.EMPTY_CLASS.html +1 -0
  755. package/typedoc/variables/shared_constants.INVALID_CLASS.html +1 -0
  756. package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +1 -0
  757. package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +1 -0
  758. package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +1 -0
  759. package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +1 -0
  760. package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +1 -0
  761. package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +1 -0
  762. package/typedoc/variables/shared_constants.VALID_CLASS.html +1 -0
  763. package/typedoc/variables/shared_hof.propEq.html +6 -0
  764. package/typedoc/variables/shared_jqlite_jqlite.BOOLEAN_ATTR.html +1 -0
  765. package/typedoc/variables/shared_strings.hostRegex.html +1 -0
  766. package/typedoc/variables/shared_utils.ngAttrPrefixes.html +1 -0
  767. package/typedoc.json +6 -0
  768. package/types/animations/animate.d.ts +1 -17
  769. package/types/core/compile/attributes.d.ts +0 -20
  770. package/types/core/compile/compile.d.ts +0 -5
  771. package/types/core/controller/controller.d.ts +0 -4
  772. package/types/core/exception-handler.d.ts +1 -1
  773. package/types/core/interpolate/interpolate.d.ts +0 -6
  774. package/types/core/q/q.d.ts +0 -5
  775. package/types/core/sce/sce.d.ts +0 -265
  776. package/types/core/scope/scope.d.ts +1 -75
  777. package/types/core/task-tracker-factory.d.ts +3 -3
  778. package/types/core/url-utils/url-utils.d.ts +1 -47
  779. package/types/directive/aria/aria.d.ts +0 -6
  780. package/types/directive/class/class.d.ts +0 -16
  781. package/types/directive/form/form.d.ts +0 -24
  782. package/types/directive/model/model.d.ts +5 -49
  783. package/types/directive/script/script.d.ts +0 -15
  784. package/types/directive/validators/validators.d.ts +0 -15
  785. package/types/router/params/param-type.d.ts +1 -7
  786. package/types/services/browser.d.ts +0 -8
  787. package/types/services/cache-factory.d.ts +0 -8
  788. package/types/services/http/http.d.ts +0 -13
  789. package/types/services/http-backend/http-backend.d.ts +0 -4
  790. package/types/services/log.d.ts +29 -36
  791. package/types/shared/common.d.ts +2 -5
  792. package/types/shared/predicates.d.ts +5 -3
  793. package/types/types.d.ts +130 -3
@@ -0,0 +1,3 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CacheFactoryProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_cache_factory.html">services/cache-factory</a></li><li><a href="services_cache_factory.CacheFactoryProvider.html">CacheFactoryProvider</a></li></ul><h1>Class CacheFactoryProvider</h1></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L3">services/cache-factory.js:3</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_cache_factory.CacheFactoryProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
2
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_cache_factory.CacheFactoryProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
3
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new_CacheFactoryProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new <wbr/>Cache<wbr/>Factory<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_cache_factory.CacheFactoryProvider.html" class="tsd-signature-type tsd-kind-class">CacheFactoryProvider</a><a href="#constructor.new_CacheFactoryProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="services_cache_factory.CacheFactoryProvider.html" class="tsd-signature-type tsd-kind-class">CacheFactoryProvider</a></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L3">services/cache-factory.js:3</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-symbol">{ </span><br/><span>    </span><span class="tsd-kind-call-signature">get</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">cacheId</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-call-signature">info</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">cacheId</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L4">services/cache-factory.js:4</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>TemplateCacheProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_cache_factory.html">services/cache-factory</a></li><li><a href="services_cache_factory.TemplateCacheProvider.html">TemplateCacheProvider</a></li></ul><h1>Class TemplateCacheProvider</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><h4 class="tsd-anchor-link"><a id="Name" class="tsd-anchor"></a>Name<a href="#Name" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>$templateCache</p>
2
+ <h4 class="tsd-anchor-link"><a id="Description" class="tsd-anchor"></a>Description<a href="#Description" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p><code>$templateCache</code> is a $cacheFactory.Cache Cache object created by the
3
+ ng.$cacheFactory $cacheFactory.</p>
4
+ <p>The first time a template is used, it is loaded in the template cache for quick retrieval. You
5
+ can load templates directly into the cache in a <code>script</code> tag, by using $templateRequest,
6
+ or by consuming the <code>$templateCache</code> service directly.</p>
7
+ <p>Adding via the <code>script</code> tag:</p>
8
+ <pre><code class="html"><span class="hl-1"> </span><span class="hl-3">&lt;</span><span class="hl-4">script</span><span class="hl-5"> </span><span class="hl-6">type</span><span class="hl-5">=</span><span class="hl-7">&quot;text/ng-template&quot;</span><span class="hl-5"> </span><span class="hl-6">id</span><span class="hl-5">=</span><span class="hl-7">&quot;templateId.html&quot;</span><span class="hl-3">&gt;</span><br/><span class="hl-5"> </span><span class="hl-3">&lt;</span><span class="hl-4">p</span><span class="hl-3">&gt;</span><span class="hl-5">This is the content of the template</span><span class="hl-3">&lt;/</span><span class="hl-4">p</span><span class="hl-3">&gt;</span><br/><span class="hl-5"> </span><span class="hl-3">&lt;/</span><span class="hl-4">script</span><span class="hl-3">&gt;</span>
9
+ </code><button type="button">Copy</button></pre>
10
+
11
+ <p><strong>Note:</strong> the <code>script</code> tag containing the template does not need to be included in the <code>head</code> of
12
+ the document, but it must be a descendent of the ng.$rootElement $rootElement (e.g.
13
+ element with ngApp attribute), otherwise the template will be ignored.</p>
14
+ <p>Adding via the <code>$templateCache</code> service:</p>
15
+ <pre><code class="js"><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">myApp</span><span class="hl-1"> = </span><span class="hl-10">angular</span><span class="hl-1">.</span><span class="hl-0">module</span><span class="hl-1">(</span><span class="hl-2">&#39;myApp&#39;</span><span class="hl-1">, []);</span><br/><span class="hl-10">myApp</span><span class="hl-1">.</span><span class="hl-0">run</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$templateCache</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">$templateCache</span><span class="hl-1">.</span><span class="hl-0">put</span><span class="hl-1">(</span><span class="hl-2">&#39;templateId.html&#39;</span><span class="hl-1">, </span><span class="hl-2">&#39;This is the content of the template&#39;</span><span class="hl-1">);</span><br/><span class="hl-1">});</span>
16
+ </code><button type="button">Copy</button></pre>
17
+
18
+ <p>To retrieve the template later, simply use it in your component:</p>
19
+ <pre><code class="js"><span class="hl-10">myApp</span><span class="hl-1">.</span><span class="hl-0">component</span><span class="hl-1">(</span><span class="hl-2">&#39;myComponent&#39;</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-10">templateUrl:</span><span class="hl-1"> </span><span class="hl-2">&#39;templateId.html&#39;</span><br/><span class="hl-1">});</span>
20
+ </code><button type="button">Copy</button></pre>
21
+
22
+ <p>or get it via the <code>$templateCache</code> service:</p>
23
+ <pre><code class="js"><span class="hl-10">$templateCache</span><span class="hl-1">.</span><span class="hl-0">get</span><span class="hl-1">(</span><span class="hl-2">&#39;templateId.html&#39;</span><span class="hl-1">)</span>
24
+ </code><button type="button">Copy</button></pre>
25
+
26
+ </div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L287">services/cache-factory.js:287</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_cache_factory.TemplateCacheProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
27
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_cache_factory.TemplateCacheProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
28
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new_TemplateCacheProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new <wbr/>Template<wbr/>Cache<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_cache_factory.TemplateCacheProvider.html" class="tsd-signature-type tsd-kind-class">TemplateCacheProvider</a><a href="#constructor.new_TemplateCacheProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="services_cache_factory.TemplateCacheProvider.html" class="tsd-signature-type tsd-kind-class">TemplateCacheProvider</a></h4><div class="tsd-comment tsd-typography"><h4 class="tsd-anchor-link"><a id="Name-1" class="tsd-anchor"></a>Name<a href="#Name-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>$templateCache</p>
29
+ <h4 class="tsd-anchor-link"><a id="Description-1" class="tsd-anchor"></a>Description<a href="#Description-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p><code>$templateCache</code> is a $cacheFactory.Cache Cache object created by the
30
+ ng.$cacheFactory $cacheFactory.</p>
31
+ <p>The first time a template is used, it is loaded in the template cache for quick retrieval. You
32
+ can load templates directly into the cache in a <code>script</code> tag, by using $templateRequest,
33
+ or by consuming the <code>$templateCache</code> service directly.</p>
34
+ <p>Adding via the <code>script</code> tag:</p>
35
+ <pre><code class="html"><span class="hl-1"> </span><span class="hl-3">&lt;</span><span class="hl-4">script</span><span class="hl-5"> </span><span class="hl-6">type</span><span class="hl-5">=</span><span class="hl-7">&quot;text/ng-template&quot;</span><span class="hl-5"> </span><span class="hl-6">id</span><span class="hl-5">=</span><span class="hl-7">&quot;templateId.html&quot;</span><span class="hl-3">&gt;</span><br/><span class="hl-5"> </span><span class="hl-3">&lt;</span><span class="hl-4">p</span><span class="hl-3">&gt;</span><span class="hl-5">This is the content of the template</span><span class="hl-3">&lt;/</span><span class="hl-4">p</span><span class="hl-3">&gt;</span><br/><span class="hl-5"> </span><span class="hl-3">&lt;/</span><span class="hl-4">script</span><span class="hl-3">&gt;</span>
36
+ </code><button type="button">Copy</button></pre>
37
+
38
+ <p><strong>Note:</strong> the <code>script</code> tag containing the template does not need to be included in the <code>head</code> of
39
+ the document, but it must be a descendent of the ng.$rootElement $rootElement (e.g.
40
+ element with ngApp attribute), otherwise the template will be ignored.</p>
41
+ <p>Adding via the <code>$templateCache</code> service:</p>
42
+ <pre><code class="js"><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">myApp</span><span class="hl-1"> = </span><span class="hl-10">angular</span><span class="hl-1">.</span><span class="hl-0">module</span><span class="hl-1">(</span><span class="hl-2">&#39;myApp&#39;</span><span class="hl-1">, []);</span><br/><span class="hl-10">myApp</span><span class="hl-1">.</span><span class="hl-0">run</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$templateCache</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">$templateCache</span><span class="hl-1">.</span><span class="hl-0">put</span><span class="hl-1">(</span><span class="hl-2">&#39;templateId.html&#39;</span><span class="hl-1">, </span><span class="hl-2">&#39;This is the content of the template&#39;</span><span class="hl-1">);</span><br/><span class="hl-1">});</span>
43
+ </code><button type="button">Copy</button></pre>
44
+
45
+ <p>To retrieve the template later, simply use it in your component:</p>
46
+ <pre><code class="js"><span class="hl-10">myApp</span><span class="hl-1">.</span><span class="hl-0">component</span><span class="hl-1">(</span><span class="hl-2">&#39;myComponent&#39;</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-10">templateUrl:</span><span class="hl-1"> </span><span class="hl-2">&#39;templateId.html&#39;</span><br/><span class="hl-1">});</span>
47
+ </code><button type="button">Copy</button></pre>
48
+
49
+ <p>or get it via the <code>$templateCache</code> service:</p>
50
+ <pre><code class="js"><span class="hl-10">$templateCache</span><span class="hl-1">.</span><span class="hl-0">get</span><span class="hl-1">(</span><span class="hl-2">&#39;templateId.html&#39;</span><span class="hl-1">)</span>
51
+ </code><button type="button">Copy</button></pre>
52
+
53
+ </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L287">services/cache-factory.js:287</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">$cacheFactory</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/cache-factory.js#L288">services/cache-factory.js:288</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,11 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$HttpBackendProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_http_backend_http_backend.html">services/http-backend/http-backend</a></li><li><a href="services_http_backend_http_backend._HttpBackendProvider.html">$HttpBackendProvider</a></li></ul><h1>Class $HttpBackendProvider</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>HTTP backend used by the ng.$http service that delegates to
2
+ XMLHttpRequest object and deals with browser incompatibilities.</p>
3
+ <p>You should never need to use this service directly, instead use the higher-level abstractions:
4
+ ng.$http $http.</p>
5
+ </div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http-backend/http-backend.js#L17">services/http-backend/http-backend.js:17</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_http_backend_http_backend._HttpBackendProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
6
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_http_backend_http_backend._HttpBackendProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
7
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new__HttpBackendProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new $<wbr/>Http<wbr/>Backend<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_http_backend_http_backend._HttpBackendProvider.html" class="tsd-signature-type tsd-kind-class">$HttpBackendProvider</a><a href="#constructor.new__HttpBackendProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-comment tsd-typography"><p>HTTP backend used by the ng.$http service that delegates to
8
+ XMLHttpRequest object and deals with browser incompatibilities.</p>
9
+ <p>You should never need to use this service directly, instead use the higher-level abstractions:
10
+ ng.$http $http.</p>
11
+ </div><h4 class="tsd-returns-title">Returns <a href="services_http_backend_http_backend._HttpBackendProvider.html" class="tsd-signature-type tsd-kind-class">$HttpBackendProvider</a></h4><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http-backend/http-backend.js#L17">services/http-backend/http-backend.js:17</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">$browser</span><span class="tsd-signature-symbol">: </span><a href="services_browser.Browser.html" class="tsd-signature-type tsd-kind-class">Browser</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">method</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">url</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">post</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">callback</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">headers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">timeout</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">withCredentials</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">responseType</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">eventHandlers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">uploadEventHandlers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http-backend/http-backend.js#L18">services/http-backend/http-backend.js:18</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,31 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$HttpParamSerializerJQLikeProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_http_http.html">services/http/http</a></li><li><a href="services_http_http._HttpParamSerializerJQLikeProvider.html">$HttpParamSerializerJQLikeProvider</a></li></ul><h1>Class $HttpParamSerializerJQLikeProvider</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Alternative $http <code>$http</code> params serializer that follows
2
+ jQuery's <a href="http://api.jquery.com/jquery.param/"><code>param()</code></a> method logic.
3
+ The serializer will also sort the params alphabetically.</p>
4
+ <p>To use it for serializing <code>$http</code> request parameters, set it as the <code>paramSerializer</code> property:</p>
5
+ <pre><code class="js"><span class="hl-0">$http</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-10">myUrl</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">method:</span><span class="hl-1"> </span><span class="hl-2">&#39;GET&#39;</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">params:</span><span class="hl-1"> </span><span class="hl-10">myParams</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">paramSerializer:</span><span class="hl-1"> </span><span class="hl-2">&#39;$httpParamSerializerJQLike&#39;</span><br/><span class="hl-1">});</span>
6
+ </code><button type="button">Copy</button></pre>
7
+
8
+ <p>It is also possible to set it as the default <code>paramSerializer</code> in the
9
+ $httpProvider#defaults <code>$httpProvider</code>.</p>
10
+ <p>Additionally, you can inject the serializer and use it explicitly, for example to serialize
11
+ form data for submission:</p>
12
+ <pre><code class="js"><span class="hl-1">.</span><span class="hl-0">controller</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$http</span><span class="hl-1">, </span><span class="hl-10">$httpParamSerializerJQLike</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-9">//...</span><br/><br/><span class="hl-1"> </span><span class="hl-0">$http</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-10">myUrl</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">method:</span><span class="hl-1"> </span><span class="hl-2">&#39;POST&#39;</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">data:</span><span class="hl-1"> </span><span class="hl-0">$httpParamSerializerJQLike</span><span class="hl-1">(</span><span class="hl-10">myData</span><span class="hl-1">),</span><br/><span class="hl-1"> </span><span class="hl-10">headers:</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-2">&#39;Content-Type&#39;</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-2">&#39;application/x-www-form-urlencoded&#39;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> });</span><br/><br/><span class="hl-1">});</span>
13
+ </code><button type="button">Copy</button></pre>
14
+
15
+ </div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L123">services/http/http.js:123</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_http_http._HttpParamSerializerJQLikeProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
16
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_http_http._HttpParamSerializerJQLikeProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
17
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new__HttpParamSerializerJQLikeProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new $<wbr/>Http<wbr/>Param<wbr/>SerializerJQLike<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_http_http._HttpParamSerializerJQLikeProvider.html" class="tsd-signature-type tsd-kind-class">$HttpParamSerializerJQLikeProvider</a><a href="#constructor.new__HttpParamSerializerJQLikeProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-comment tsd-typography"><p>Alternative $http <code>$http</code> params serializer that follows
18
+ jQuery's <a href="http://api.jquery.com/jquery.param/"><code>param()</code></a> method logic.
19
+ The serializer will also sort the params alphabetically.</p>
20
+ <p>To use it for serializing <code>$http</code> request parameters, set it as the <code>paramSerializer</code> property:</p>
21
+ <pre><code class="js"><span class="hl-0">$http</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-10">myUrl</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">method:</span><span class="hl-1"> </span><span class="hl-2">&#39;GET&#39;</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">params:</span><span class="hl-1"> </span><span class="hl-10">myParams</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">paramSerializer:</span><span class="hl-1"> </span><span class="hl-2">&#39;$httpParamSerializerJQLike&#39;</span><br/><span class="hl-1">});</span>
22
+ </code><button type="button">Copy</button></pre>
23
+
24
+ <p>It is also possible to set it as the default <code>paramSerializer</code> in the
25
+ $httpProvider#defaults <code>$httpProvider</code>.</p>
26
+ <p>Additionally, you can inject the serializer and use it explicitly, for example to serialize
27
+ form data for submission:</p>
28
+ <pre><code class="js"><span class="hl-1">.</span><span class="hl-0">controller</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$http</span><span class="hl-1">, </span><span class="hl-10">$httpParamSerializerJQLike</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-9">//...</span><br/><br/><span class="hl-1"> </span><span class="hl-0">$http</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-10">myUrl</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">method:</span><span class="hl-1"> </span><span class="hl-2">&#39;POST&#39;</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">data:</span><span class="hl-1"> </span><span class="hl-0">$httpParamSerializerJQLike</span><span class="hl-1">(</span><span class="hl-10">myData</span><span class="hl-1">),</span><br/><span class="hl-1"> </span><span class="hl-10">headers:</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-2">&#39;Content-Type&#39;</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-2">&#39;application/x-www-form-urlencoded&#39;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> });</span><br/><br/><span class="hl-1">});</span>
29
+ </code><button type="button">Copy</button></pre>
30
+
31
+ </div><h4 class="tsd-returns-title">Returns <a href="services_http_http._HttpParamSerializerJQLikeProvider.html" class="tsd-signature-type tsd-kind-class">$HttpParamSerializerJQLikeProvider</a></h4><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L123">services/http/http.js:123</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">params</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L124">services/http/http.js:124</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$HttpParamSerializerProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_http_http.html">services/http/http</a></li><li><a href="services_http_http._HttpParamSerializerProvider.html">$HttpParamSerializerProvider</a></li></ul><h1>Class $HttpParamSerializerProvider</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Default params serializer that converts objects to strings
2
+ according to the following rules:</p>
3
+ <ul>
4
+ <li><code>{'foo': 'bar'}</code> results in <code>foo=bar</code></li>
5
+ <li><code>{'foo': Date.now()}</code> results in <code>foo=2015-04-01T09%3A50%3A49.262Z</code> (<code>toISOString()</code> and encoded representation of a Date object)</li>
6
+ <li><code>{'foo': ['bar', 'baz']}</code> results in <code>foo=bar&amp;foo=baz</code> (repeated key for each array element)</li>
7
+ <li><code>{'foo': {'bar':'baz'}}</code> results in <code>foo=%7B%22bar%22%3A%22baz%22%7D</code> (stringified and encoded representation of an object)</li>
8
+ </ul>
9
+ <p>Note that serializer will sort the request parameters alphabetically.</p>
10
+ </div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L58">services/http/http.js:58</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_http_http._HttpParamSerializerProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
11
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_http_http._HttpParamSerializerProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
12
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new__HttpParamSerializerProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new $<wbr/>Http<wbr/>Param<wbr/>Serializer<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_http_http._HttpParamSerializerProvider.html" class="tsd-signature-type tsd-kind-class">$HttpParamSerializerProvider</a><a href="#constructor.new__HttpParamSerializerProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-comment tsd-typography"><p>Default params serializer that converts objects to strings
13
+ according to the following rules:</p>
14
+ <ul>
15
+ <li><code>{'foo': 'bar'}</code> results in <code>foo=bar</code></li>
16
+ <li><code>{'foo': Date.now()}</code> results in <code>foo=2015-04-01T09%3A50%3A49.262Z</code> (<code>toISOString()</code> and encoded representation of a Date object)</li>
17
+ <li><code>{'foo': ['bar', 'baz']}</code> results in <code>foo=bar&amp;foo=baz</code> (repeated key for each array element)</li>
18
+ <li><code>{'foo': {'bar':'baz'}}</code> results in <code>foo=%7B%22bar%22%3A%22baz%22%7D</code> (stringified and encoded representation of an object)</li>
19
+ </ul>
20
+ <p>Note that serializer will sort the request parameters alphabetically.</p>
21
+ </div><h4 class="tsd-returns-title">Returns <a href="services_http_http._HttpParamSerializerProvider.html" class="tsd-signature-type tsd-kind-class">$HttpParamSerializerProvider</a></h4><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L58">services/http/http.js:58</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">params</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L59">services/http/http.js:59</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,19 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$HttpProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_http_http.html">services/http/http</a></li><li><a href="services_http_http._HttpProvider.html">$HttpProvider</a></li></ul><h1>Class $HttpProvider</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Use <code>$httpProvider</code> to change the default behavior of the ng.$http $http service.</p>
2
+ </div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L295">services/http/http.js:295</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_http_http._HttpProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
3
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_http_http._HttpProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a>
4
+ <a href="services_http_http._HttpProvider.html#defaults" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>defaults</span></a>
5
+ <a href="services_http_http._HttpProvider.html#interceptors" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>interceptors</span></a>
6
+ <a href="services_http_http._HttpProvider.html#useApplyAsync" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>use<wbr/>Apply<wbr/>Async</span></a>
7
+ <a href="services_http_http._HttpProvider.html#xsrfTrustedOrigins" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>xsrf<wbr/>Trusted<wbr/>Origins</span></a>
8
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new__HttpProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new $<wbr/>Http<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_http_http._HttpProvider.html" class="tsd-signature-type tsd-kind-class">$HttpProvider</a><a href="#constructor.new__HttpProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-comment tsd-typography"><p>Use <code>$httpProvider</code> to change the default behavior of the ng.$http $http service.</p>
9
+ </div><h4 class="tsd-returns-title">Returns <a href="services_http_http._HttpProvider.html" class="tsd-signature-type tsd-kind-class">$HttpProvider</a></h4><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L295">services/http/http.js:295</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">$get</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">$browser</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">$httpBackend</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">$cacheFactory</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">$rootScope</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">$q</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">$injector</span><span class="tsd-signature-symbol">: </span><a href="core_di_internal_injector.InjectorService.html" class="tsd-signature-type tsd-kind-class">InjectorService</a>, <span class="tsd-kind-parameter">$sce</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-symbol">{ </span><br/><span>    </span><span class="tsd-kind-property">defaults</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span>        </span><span class="tsd-kind-property">headers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span>            </span><span class="tsd-kind-property">common</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span>                </span><span class="tsd-kind-property">Accept</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>            </span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">; </span><br/><span>            </span><span class="tsd-kind-property">patch</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>            </span><span class="tsd-kind-property">post</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>            </span><span class="tsd-kind-property">put</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">paramSerializer</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">transformRequest</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">d</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">transformResponse</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">data</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">headers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">xsrfCookieName</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">xsrfHeaderName</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">pendingRequests</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">requestConfig</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L456">services/http/http.js:456</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="defaults" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>defaults</span><a href="#defaults" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaults</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span><br/><span>    </span><span class="tsd-kind-property">headers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span>        </span><span class="tsd-kind-property">common</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span>            </span><span class="tsd-kind-property">Accept</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">patch</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">post</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>        </span><span class="tsd-kind-property">put</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">paramSerializer</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">transformRequest</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">d</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">transformResponse</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">data</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-kind-parameter">headers</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">xsrfCookieName</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><span class="tsd-kind-property">xsrfHeaderName</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L341">services/http/http.js:341</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="interceptors" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>interceptors</span><a href="#interceptors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">interceptors</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L403">services/http/http.js:403</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="useApplyAsync" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>use<wbr/>Apply<wbr/>Async</span><a href="#useApplyAsync" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">use<wbr/>Apply<wbr/>Async</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><div class="tsd-comment tsd-typography"><p>Configure $http service to combine processing of multiple http responses received at around
10
+ the same time via ng.$rootScope.Scope#$applyAsync $rootScope.$applyAsync. This can result in
11
+ significant performance improvement for bigger applications that make many HTTP requests
12
+ concurrently (common during application bootstrap).</p>
13
+ <p>Defaults to false. If no value is specified, returns the current configured value.</p>
14
+ </div><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures"><li class="tsd-signature" id="useApplyAsync.__type-3.__type-4"><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">boolean</span></span><div class="tsd-comment tsd-typography"><p>If true, when requests are loaded, they will schedule a deferred
15
+ &quot;apply&quot; on the next tick, giving time for subsequent requests in a roughly ~10ms window
16
+ to load and share the same digest cycle.</p>
17
+ </div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4><p>If a value is specified, returns the $httpProvider for chaining.
18
+ otherwise, returns the current configured value.</p>
19
+ <div class="tsd-comment tsd-typography"></div></li></ul></li></ul></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L386">services/http/http.js:386</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="xsrfTrustedOrigins" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>xsrf<wbr/>Trusted<wbr/>Origins</span><a href="#xsrfTrustedOrigins" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">xsrf<wbr/>Trusted<wbr/>Origins</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/http/http.js#L441">services/http/http.js:441</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>$get</span></a><a href="#defaults" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>defaults</span></a><a href="#interceptors" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>interceptors</span></a><a href="#useApplyAsync" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>use<wbr/>Apply<wbr/>Async</span></a><a href="#xsrfTrustedOrigins" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>xsrf<wbr/>Trusted<wbr/>Origins</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -0,0 +1,9 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$LogProvider | @angular-wave/angular.ts</title><meta name="description" content="Documentation for @angular-wave/angular.ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@angular-wave/angular.ts</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@angular-wave/angular.ts</a></li><li><a href="../modules/services_log.html">services/log</a></li><li><a href="services_log._LogProvider.html">$LogProvider</a></li></ul><h1>Class $LogProvider</h1></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L43">services/log.js:43</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="services_log._LogProvider.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
2
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="services_log._LogProvider.html#debug" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>debug</span></a>
3
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="services_log._LogProvider.html#_get" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>$get</span></a>
4
+ <a href="services_log._LogProvider.html#consoleLog" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>console<wbr/>Log</span></a>
5
+ <a href="services_log._LogProvider.html#debugEnabled" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>debug<wbr/>Enabled</span></a>
6
+ <a href="services_log._LogProvider.html#formatError" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>format<wbr/>Error</span></a>
7
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Constructors</h2></summary><section><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new__LogProvider" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new $<wbr/>Log<wbr/>Provider</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="services_log._LogProvider.html" class="tsd-signature-type tsd-kind-class">$LogProvider</a><a href="#constructor.new__LogProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="services_log._LogProvider.html" class="tsd-signature-type tsd-kind-class">$LogProvider</a></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L44">services/log.js:44</a></li></ul></aside></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Properties</h2></summary><section><section class="tsd-panel tsd-member"><a id="debug" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>debug</span><a href="#debug" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">debug</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L45">services/log.js:45</a></li><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L54">services/log.js:54</a></li></ul></aside></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Methods"><h2><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg> Methods</h2></summary><section><section class="tsd-panel tsd-member"><a id="_get" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>$get</span><a href="#_get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="_get._get-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">$get</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/services_log.LogService.html" class="tsd-signature-type tsd-kind-interface">LogService</a><a href="#_get._get-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="../interfaces/services_log.LogService.html" class="tsd-signature-type tsd-kind-interface">LogService</a></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L84">services/log.js:84</a></li></ul></aside></li></ul></section><section class="tsd-panel tsd-member"><a id="consoleLog" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>console<wbr/>Log</span><a href="#consoleLog" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="consoleLog.consoleLog-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">console<wbr/>Log</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">type</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><a href="#consoleLog.consoleLog-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">type</span>: <span class="tsd-signature-type">any</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></h4><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures"><li class="tsd-signature" id="consoleLog.consoleLog-1.__type.__type-1"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Rest</code><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span>: <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4></li></ul></li></ul><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L74">services/log.js:74</a></li></ul></aside></li></ul></section><section class="tsd-panel tsd-member"><a id="debugEnabled" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>debug<wbr/>Enabled</span><a href="#debugEnabled" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="debugEnabled.debugEnabled-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">debug<wbr/>Enabled</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">flag</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><a href="#debugEnabled.debugEnabled-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">flag</span>: <span class="tsd-signature-type">boolean</span></span><div class="tsd-comment tsd-typography"><p>enable or disable debug level messages</p>
8
+ </div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4><p>current value if used as getter or itself (chaining) if used as setter</p>
9
+ <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L52">services/log.js:52</a></li></ul></aside></li></ul></section><section class="tsd-panel tsd-member"><a id="formatError" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>format<wbr/>Error</span><a href="#formatError" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="formatError.formatError-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">format<wbr/>Error</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">arg</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><a href="#formatError.formatError-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">arg</span>: <span class="tsd-signature-type">any</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Angular-Wave/angular.ts/blob/aae5a827a08432c64ef38f93ac7f3c46fe046705/src/services/log.js#L60">services/log.js:60</a></li></ul></aside></li></ul></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#debug" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>debug</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="tsd-otp-Methods"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Methods</summary><div><a href="#_get" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>$get</span></a><a href="#consoleLog" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>console<wbr/>Log</span></a><a href="#debugEnabled" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>debug<wbr/>Enabled</span></a><a href="#formatError" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>format<wbr/>Error</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@angular-wave/angular.ts</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>