argos/dmp-frontend/src/app/form/fields/label/label.ts

11 lines
251 B
TypeScript

import {FieldBase} from '../field-base';
export class LabelField extends FieldBase<string> {
controlType = 'label';
type: string;
constructor (options: {} = {}) {
super(options);
this.type = options['type'] || '';
}
}