import { FormControl } from '@angular/forms'; import { Autocomplete } from '../../enum/autocomplete/autocomplete.enum'; /** * @author Alex Hodson * @description an interface defining the required properties for the password input configuration */ export interface CustomPasswordInputConfig { id: string; label: string; value: FormControl; errorMessage?: string; autocomplete?: Autocomplete; handleChange: (...args: any[]) => void; testId?: string; }