From c713b75654b804a4cc592c9fb19095885d8ca706 Mon Sep 17 00:00:00 2001 From: Sam Noedel Date: Fri, 24 Jul 2015 15:45:56 -0700 Subject: [PATCH] Add optional strict DI parameter to angular.injector --- angularjs/angular.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index 746fbb0e0..5ad9895b0 100755 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -238,7 +238,7 @@ declare module angular { fromJson(json: string): any; identity(arg?: any): any; - injector(modules?: any[]): auto.IInjectorService; + injector(modules?: any[], strictDi?: boolean): auto.IInjectorService; isArray(value: any): boolean; isDate(value: any): boolean; isDefined(value: any): boolean; @@ -421,9 +421,9 @@ declare module angular { /** * Converts an attribute name (e.g. dash/colon/underscore-delimited string, optionally prefixed with x- or data-) to its normalized, camelCase form. - * + * * Also there is special case for Moz prefix starting with upper case letter. - * + * * For further information check out the guide on @see https://docs.angularjs.org/guide/directive#matching-directives */ $normalize(name: string): void;