fix(all): updated tslint rules to latest

This commit is contained in:
Manu Mtz.-Almeida
2018-07-29 13:03:47 +02:00
parent d1969bdf1d
commit 92e21a8cf3
112 changed files with 548 additions and 576 deletions

View File

@ -53,7 +53,7 @@ export class ViewController {
}
}
export function matches(view: ViewController|undefined, id: string, params: ComponentProps): view is ViewController {
export function matches(view: ViewController | undefined, id: string, params: ComponentProps): view is ViewController {
if (!view) {
return false;
}
@ -86,7 +86,7 @@ export function matches(view: ViewController|undefined, id: string, params: Comp
return true;
}
export function convertToView(page: any, params: any): ViewController|null {
export function convertToView(page: any, params: any): ViewController | null {
if (!page) {
return null;
}