src/app/views/tasks/tasks.component.ts:12:3 - error TS2564: Property 'tasks' has no initializer and is not definitely assigned in the constructor. 12 tasks: Task[];
export class TasksComponent implements OnInit {
tasks: Task[];
constructor(private dataHandler: DataHandlerService) {
}
ngOnInit() {
this.dataHandler.tasksSubject.subscribe(tasks=>this.tasks = tasks);
}
}