UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (11 loc) 394 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoThemeModule } from '@ohayo/theme'; import { DownFileDirective } from './down-file.directive'; const DIRECTIVES = [DownFileDirective]; @NgModule({ imports: [CommonModule, OhayoThemeModule], declarations: [...DIRECTIVES], exports: [...DIRECTIVES], }) export class DownFileModule { }