UNPKG

cd-force

Version:

Form creation goodness.

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