argos/dmp-frontend/src/app/form/fields/checkbox/field-checkbox.ts

11 lines
277 B
TypeScript

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