@netgrif/components
Version:
Netgrif Application Engine frontend Angular components
12 lines • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileSystemNode = void 0;
class FileSystemNode {
constructor(path, parent) {
this.path = path;
this.parent = parent;
this.children = [];
}
}
exports.FileSystemNode = FileSystemNode;
//# sourceMappingURL=file-system-node.js.map