You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
689 B
TypeScript

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { FC_NODE_COMPONENT_CONFIG, NgxFlowchartModule } from 'ngx-flowchart-dev';
import { TestFcNodeComponent } from './test-node.component';
@NgModule({
entryComponents: [
TestFcNodeComponent
],
/*providers: [
{
provide: FC_NODE_COMPONENT_CONFIG,
useValue: {
nodeComponentType: TestFcNodeComponent
}
}
],*/
declarations: [
AppComponent,
TestFcNodeComponent
],
imports: [
BrowserModule,
NgxFlowchartModule
],
bootstrap: [AppComponent]
})
export class AppModule { }