Enabling noImplicitAny

This commit is contained in:
József Farkas
2016-06-26 15:12:50 +02:00
parent 948060f9bf
commit ebbe1559fc
8 changed files with 14 additions and 9 deletions

View File

@@ -72,11 +72,13 @@ export class LayerTabComponent implements OnInit, KeyActionSaver {
return keyAction;
}
private toggleChanged(event) {
// TODO: change to the correct type when the wrapper has added it.
private toggleChanged(event: any) {
this.toggle = event.value;
}
private layerChanged(event) {
// TODO: change to the correct type when the wrapper has added it.
private layerChanged(event: any) {
this.layer = +event.value;
}
}