19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
|
||
|
import { BlockProgressbarComponent } from './block-progressbar.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
PrimeNGModules
|
||
|
],
|
||
|
declarations: [
|
||
|
BlockProgressbarComponent
|
||
|
],
|
||
|
exports: [
|
||
|
BlockProgressbarComponent
|
||
|
]
|
||
|
})
|
||
|
export class BlockProgressbarModule { }
|