member_webapp/@overflow/probe/component/probe-download.component.ts
crusader a67a3eca5f ing
2018-06-01 19:56:50 +09:00

22 lines
402 B
TypeScript

import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'of-probe-download',
templateUrl: './probe-download.component.html',
})
export class ProbeDownloadComponent implements OnInit {
@Input() index;
@Output() select = new EventEmitter();
constructor(
) { }
ngOnInit() {
}
onChange(event) {
this.select.emit(event.index);
}
}