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