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