1 2 3 4 5 6 7 8 9 10 11
export class ExternalComponentStatus { component: string; available: boolean; metadata: any; constructor(component: string, available: boolean, metadata: any) { this.component = component; this.available = available; this.metadata = metadata; } }