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

@@ -61,10 +61,10 @@ export class SharedFilesComponent extends PageComponent implements OnInit {
this.uploadService.fileUploadComplete
.pipe(debounceTime(300))
.subscribe(file => this.reload()),
.subscribe(_ => this.reload()),
this.uploadService.fileUploadDeleted
.pipe(debounceTime(300))
.subscribe(file => this.reload()),
.subscribe(_ => this.reload()),
this.breakpointObserver
.observe([Breakpoints.HandsetPortrait, Breakpoints.HandsetLandscape])