add missing typings to code (#1050)

* remove unused parameters

* add missing types

* add missing typing information

* fix tests

* restore old code
This commit is contained in:
Denys Vuika
2019-04-02 14:38:29 +01:00
committed by GitHub
parent 04cdc1dadd
commit 3a4cff505f
46 changed files with 347 additions and 400 deletions

View File

@@ -70,7 +70,7 @@ export class AppHeaderComponent implements OnInit {
this.actions = this.appExtensions.getHeaderActions();
}
trackByActionId(index: number, action: ContentActionRef) {
trackByActionId(_: number, action: ContentActionRef) {
return action.id;
}
}