// vim: set tw=80 ts=2 sw=2 sts=2 : import { AfterViewChecked, Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; import { NgForm } from '@angular/forms'; import { Operation } from './operation'; @Component({ selector: 'operation-form', template: `
` }) export class OperationFormComponent implements AfterViewChecked { @Input() operation: Operation; @Output() onValid: EventEmitter