Replace tabs by whitespaces

Fix issues with tabs in IComponentBindings and IDirectiveScope
This commit is contained in:
Christopher Cortes
2016-09-21 16:38:30 +02:00
committed by GitHub
parent f63a1b638f
commit f4f57de0b5
+4 -4
View File
@@ -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;