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