All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.modules.agent-network.components.agent.agent.component.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { Component, Input, EventEmitter, Output } from '@angular/core';
import { AgentInfo } from '@model';

@Component({
  selector: 'chutney-agent',
  templateUrl: './agent.component.html',
  styleUrls: ['./agent.component.scss']
})
export class AgentComponent {

  @Input() configurationAgent: AgentInfo;
  @Output() AgentRemoved = new EventEmitter();

  removeAgent() {
    this.AgentRemoved.emit(this.configurationAgent);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy