Files
privacy.sexy/src/presentation/Scripts/ScriptsTree/SelectableTree/INode.ts
undergroundwires e3f82e069e refactorings
2020-01-11 05:13:03 +01:00

7 lines
180 B
TypeScript

export interface INode {
readonly id: string;
readonly text: string;
readonly documentationUrls: ReadonlyArray<string>;
readonly children?: ReadonlyArray<INode>;
}