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