UNPKG

cd-force

Version:

Form creation goodness.

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