UNPKG

@nstudio/schematics

Version:

Cross-platform (xplat) tools for Nx workspaces.

22 lines (19 loc) 332 B
import { NgModule } from '@angular/core'; import { TranslateModule } from '@ngx-translate/core'; import { PIPES } from './pipes'; const MODULES = [ TranslateModule ]; @NgModule({ imports: [ ...MODULES ], declarations: [ ...PIPES ], exports: [ ...MODULES, ...PIPES ] }) export class UISharedModule {}