Newer
Older
import {NgModule} from '@angular/core';
import {GitSearchV2SharedLibsModule} from './shared-libs.module';
import {FindLanguageFromKeyPipe} from './language/find-language-from-key.pipe';
import {AlertComponent} from './alert/alert.component';
import {AlertErrorComponent} from './alert/alert-error.component';
import {LoginModalComponent} from './login/login.component';
import {HasAnyAuthorityDirective} from './auth/has-any-authority.directive';
@NgModule({
imports: [GitSearchV2SharedLibsModule],
declarations: [FindLanguageFromKeyPipe, AlertComponent, AlertErrorComponent, LoginModalComponent, HasAnyAuthorityDirective],
entryComponents: [LoginModalComponent],
exports: [
GitSearchV2SharedLibsModule,
FindLanguageFromKeyPipe,
AlertComponent,
AlertErrorComponent,
LoginModalComponent,
HasAnyAuthorityDirective,
],
})