Variable AuthConfigServiceConst

AuthConfigService: InjectionToken<AuthConfig> = ...

Injection token for accessing configuration.

Usage Notes

Use the Inject decorator to access the configuration from a service or component:

class MyService(@Inject(AuthConfigService) config: AuthConfig) {}