21 lines
363 B
TypeScript
21 lines
363 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { COMPONENTS } from './component';
|
||
|
import { DIRECTIVES } from './directive';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
],
|
||
|
exports: [
|
||
|
COMPONENTS,
|
||
|
DIRECTIVES,
|
||
|
],
|
||
|
declarations: [
|
||
|
COMPONENTS,
|
||
|
DIRECTIVES,
|
||
|
],
|
||
|
})
|
||
|
export class D3ForceModule { }
|