argos/dmp-frontend/src/app/form/dynamic-fields/dynamic-field-textarea/textarea.ts

11 lines
257 B
TypeScript

import {FieldBase} from '../field-base';
export class TextAreaField extends FieldBase<string> {
controlType = 'textarea';
type: string;
constructor (options: {} = {}) {
super(options);
this.type = options['type'] || '';
}
}