UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

14 lines (11 loc) 356 B
// APP import { BaseControl, NovoControlConfig } from './../BaseControl'; export class FileControl extends BaseControl { controlType = 'file'; constructor(config: NovoControlConfig) { super('FileControl', config); // TODO - translate this.placeholder = config.placeholder; this.multiple = config.multiple; } }