UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

13 lines (10 loc) 317 B
// APP import { BaseControl, NovoControlConfig } from '../BaseControl'; export class QuickNoteControl extends BaseControl { controlType = 'quick-note'; options = []; constructor(config: NovoControlConfig) { super('QuickNoteControl', config); this.options = config.options || []; } }