APP_BOOTSTRAP_LISTENER
A DI token that provides a set of callbacks to be called for every component that is bootstrapped.
const APP_BOOTSTRAP_LISTENER: InjectionToken<readonly ((compRef: ComponentRef<any>) => void)[]>;
Description
Each callback must take a ComponentRef
instance and return nothing.
(componentRef: ComponentRef) => void