src/app/modules/core/interfaces/conceptData.ts
| id |
id: |
Type : string
|
| name |
name: |
Type : string
|
| nodes |
nodes: |
Type : IConceptData[]
|
export interface IConceptData {
id?: string;
name?: string;
nodes?: Array<IConceptData>;
}