const componentMapper = {
input: InputComponent,
button: ButtonComponent,
select: SelectComponent,
date: DateComponent,
radiobutton: RadiobuttonComponent,
checkbox: CheckboxComponent,
switch: SwitchComponent,
textarea: TextAreaComponent
};
const compFactory = this.resolver.resolveComponentFactory(componentMapper[this.field.type]);
Can you identify the data type of const compFactory in the above code snippet?