UNPKG

@kv-systems/ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

16 lines (14 loc) 444 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SecondaryAngularComponent } from './secondary.component'; import { AngularModule, TestInterface } from '@sample/api'; @NgModule({ imports: [CommonModule, AngularModule], declarations: [SecondaryAngularComponent], exports: [SecondaryAngularComponent], }) export class SecondaryAngularModule { x: TestInterface = { title: 'x', }; }