import { Component, Input } from '@angular/core'; import { ISdk } from "../services/sdk.service"; @Component({ selector: 'sdk-card', template: `
 SDK ID {{ sdk.id }}
 Profile {{ sdk.profile }}
 Architecture {{ sdk.arch }}
 Version {{ sdk.version }}
 Sdk path {{ sdk.path}}
`, styleUrls: ['./app/config/config.component.css'] }) export class SdkCardComponent { @Input() sdk: ISdk; constructor() { } delete(sdk: ISdk) { // Not supported for now } }