import { FormControl } from '@angular/forms'; /** * @author Alex Hodson * @description an interface which defines the required properties for the configuration of a custom text area element */ export interface CustomTextAreaConfig { id: string; label?: string; value: FormControl; name?: string; maxLength: number; disabled?: boolean; handleChange: (...args: any[]) => void; errorMessage?: string; testId?: string; }