UNPKG

cd-force

Version:

Form creation goodness.

12 lines (9 loc) 299 B
import { ControlBase } from './control-base'; export class DropdownControl extends ControlBase<string> { controlType = 'dropdown'; options: {key: string, value: string}[] = []; constructor(options: {} = {}) { super(options); this.options = options['options'] || []; } }