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