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,8 +8,8 @@ import {faTimes} from '@fortawesome/free-solid-svg-icons/faTimes';
})
export class CardComponent {
@Input() public padding = true;
@Input() public heading: string;
@Input() public closeLink: string;
@Input() public heading: string | null = null;
@Input() public closeLink: string | null = null;
public faClose = faTimes;
}