skip to Main Content

Javascript – What is the strict type for the below code in angular

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]); What is strict type for const compFactory

VIEW QUESTION
Back To Top
Search