import { ModuleWithProviders, NgModule } from '@angular/core'; import { IcsIamService } from './ics-iam.service'; import { Config } from './types/config'; /** * * * * */ @NgModule({ imports: [], declarations: [], exports: [] }) export class IcsIamModule { static forRoot(): ModuleWithProviders { return { ngModule: IcsIamModule, providers: [IcsIamService] }; } }