import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'app16'; janos: Emplyee = { name: "Panda Lajos", salary: 2850000 } } interface Emplyee { name: string; salary: number; }