Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 1x 1x | import { NodeType } from "../../../../../codeCharta.model" export const rootNode = { name: "root", path: "/root", id: 0, attributes: { unary: 2 }, type: NodeType.FOLDER, isExcluded: false, isFlattened: false, children: [ { name: "bigLeaf", path: "/root/bigLeaf", id: 1, type: NodeType.FILE, attributes: {}, isExcluded: false, isFlattened: false }, { name: "ParentLeaf", path: "/root/ParentLeaf", id: 2, type: NodeType.FOLDER, attributes: { unary: 1 }, isExcluded: false, isFlattened: false, children: [ { name: "smallLeaf", path: "/root/ParentLeaf/smallLeaf", id: 3, type: NodeType.FILE, attributes: {}, isExcluded: false, isFlattened: false } ] } ] } |