From f4f57de0b5cc07d2950bfb4b13adb3c48328febb Mon Sep 17 00:00:00 2001 From: Christopher Cortes Date: Wed, 21 Sep 2016 16:38:30 +0200 Subject: [PATCH] Replace tabs by whitespaces Fix issues with tabs in IComponentBindings and IDirectiveScope --- angularjs/angular.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index c80db8626e..d78f39bec9 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -1740,7 +1740,7 @@ declare namespace angular { } interface IComponentBindings { - [binding: string]: string; + [binding: string]: string; } interface IComponentTemplateFn { @@ -1830,10 +1830,10 @@ declare namespace angular { transclude: ITranscludeFunction ): void | IDirectivePrePost; } - + interface IDirectiveScope { - [property: string]: string; - } + [property: string]: string; + } interface IDirective { compile?: IDirectiveCompileFn;