UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

14 lines (11 loc) 377 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoUtilModule } from '@ohayo/util'; import { ImageDirective } from './image.directive'; const DIRECTIVES = [ImageDirective]; @NgModule({ imports: [CommonModule, OhayoUtilModule], declarations: [...DIRECTIVES], exports: [...DIRECTIVES], }) export class ImageModule { }