This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
shared.module.ts 895 B
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
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';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

@NgModule({
  imports: [GitSearchV2SharedLibsModule],
  declarations: [FindLanguageFromKeyPipe, AlertComponent, AlertErrorComponent, LoginModalComponent, HasAnyAuthorityDirective],
  entryComponents: [LoginModalComponent],
  exports: [
    GitSearchV2SharedLibsModule,
    FindLanguageFromKeyPipe,
    AlertComponent,
    AlertErrorComponent,
    LoginModalComponent,
    HasAnyAuthorityDirective,
  ],
})
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
export class GitSearchV2SharedModule {
}