member_webapp/@overflow/probe/component/probe-download.component.ts
2018-05-31 18:45:40 +09:00

22 lines
396 B
TypeScript

import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'of-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);
}
}