tech: ran pretttier on all typescript files

This commit is contained in:
Torkel Ödegaard
2017-12-19 16:06:54 +01:00
parent b1621e1e8f
commit fadfc665e4
355 changed files with 20624 additions and 14931 deletions

View File

@@ -1,7 +1,14 @@
import coreModule from 'app/core/core_module';
import coreModule from "app/core/core_module";
export function react2AngularDirective(name: string, component: any, options: any) {
coreModule.directive(name, ['reactDirective', reactDirective => {
return reactDirective(component, options);
}]);
export function react2AngularDirective(
name: string,
component: any,
options: any
) {
coreModule.directive(name, [
"reactDirective",
reactDirective => {
return reactDirective(component, options);
}
]);
}