path-framework-weberm16
Version:
Path Application Framework
15 lines (13 loc) • 365 B
text/typescript
import {Component, Input, Output} from '@angular/core';
import {ValueField} from "../value-field";
@Component({
selector: 'path-label-field',
templateUrl: 'label-field.component.html'
})
export class LabelFieldComponent {
@Input('field')
@Output('field')
field:LabelField;
}
export class LabelField extends ValueField<string> {
}