UNPKG

generator-terminus-ui

Version:

A generator for adding new components to the Terminus UI library.

21 lines (16 loc) 387 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { <%= directiveName %> } from './<%= kebabName %>.directive'; export * from './<%= kebabName %>.directive'; @NgModule({ imports: [ CommonModule, ], declarations: [ <%= directiveName %>, ], exports: [ <%= directiveName %>, ], }) export class <%= moduleName %> {}