Commit f36c2e8 1 parent 71cc772 commit f36c2e8 Copy full SHA for f36c2e8
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
// A type alias for values that can either be a URI or a Node.
18
18
type NodeOrRef = URI | Node ;
19
19
20
- // A type alias for node entries which may be a single NodeOrRef or an array of them.
20
+ // A type alias for node entries which may be a single NodeOrRef or an unordered set of them.
21
21
type NodeEntry = NodeOrRef | NodeOrRef [];
22
22
23
23
interface LinkedTree {
24
- // The root can be a single NodeOrRef or an array of NodeOrRef.
24
+ // The root can be a single NodeOrRef or an unordered set of NodeOrRef.
25
25
root: NodeOrRef | NodeOrRef [];
26
26
27
- // A mapping of identifiers to their corresponding Node objects.
28
- nodes: Map <URI , CNLTNode | Node []>;
27
+ // A mapping of identifiers to their corresponding Node objects (an unordered set) .
28
+ nodes: Map <URI , Node | Node []>;
29
29
}
30
30
31
31
interface Node {
You can’t perform that action at this time.
0 commit comments