UNPKG

@codeforges/ng-forms

Version:

Angular 4+ Dynamic form builder, decorate your models to generate forms or create them manually

8 lines 240 B
import { BaseInput } from "./base/BaseInput"; export class TextInput extends BaseInput { constructor(name, inputParams) { super(name, inputParams); this.controlType = 'text'; } } //# sourceMappingURL=TextInput.js.map