import {FieldBase} from '../field-base'; export class RadioBoxField extends FieldBase{ controlType = 'radiobox'; type: "radio"; answers: Array; constructor(options: {} = {}){ super(options); this.type = options['type'] || []; this.answers = options['answers'] || [] } }