import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'app01'; employee: Employee; constructor() { this.employee = { name: "Pali Márton", salary: 2830000 }; } } interface Employee { name: string, salary: number }