activated typescript strict mode

This commit is contained in:
2021-05-22 15:30:04 +02:00
parent a195fafa6b
commit cb2c028ca4
76 changed files with 511 additions and 296 deletions

View File

@@ -8,6 +8,6 @@ import {Config} from '../../../../services/config';
styleUrls: ['./legal.component.less'],
})
export class LegalComponent {
@Input() public song: Song;
@Input() public config: Config;
@Input() public song: Song | null = null;
@Input() public config: Config | null = null;
}