novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
13 lines (10 loc) • 328 B
text/typescript
// APP
import { BaseControl, NovoControlConfig } from './../BaseControl';
export class NativeSelectControl extends BaseControl {
controlType = 'native-select';
options = [];
constructor(config: NovoControlConfig) {
super('NativeSelectControl', config);
this.options = config.options || [];
}
}