7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
export interface INode {
|
|
readonly id: string;
|
|
readonly text: string;
|
|
readonly documentationUrls: ReadonlyArray<string>;
|
|
readonly children?: ReadonlyArray<INode>;
|
|
}
|