ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
17 lines (13 loc) • 556 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { OhayoLocaleModule } from '@ohayo/theme';
import { OhayoUtilModule } from '@ohayo/util';
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
import { G2MiniProgressComponent } from './mini-progress.component';
const COMPONENTS = [G2MiniProgressComponent];
({
imports: [CommonModule, OhayoUtilModule, OhayoLocaleModule, NzToolTipModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class G2MiniProgressModule { }