/** * @author Alex Hodson * @description an interface which defines the required properties for a custom checkbox's configuration */ export interface CustomCheckboxConfig { 'id': string; 'label': string; 'isSelected': boolean; 'name': string; 'disabled'?: boolean; 'handleChange': (...args: any[]) => void; }