import { Type } from '@angular/core'; type FormValues = { labelName: string, controlName: string, } type LoginInstace = { username: FormValues, password: FormValues, } type LazyComponent = { component: Type, loginRoute?: false, instance?: any } | { component: Type, loginRoute: true, instance: LoginInstace };