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