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