UNPKG

cd-force

Version:

Form creation goodness.

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