woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
27 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an item of a node.
*/
class NodeItem {
/**
* Initializes a new instance of the `NodeItem` class.
*/
constructor(node) {
this.node = node;
}
/**
* Gets or sets the node of the item.
*/
get Node() {
return this.node;
}
/**
* Gets the identifiable objects of the node.
*/
GetObjects() {
return {};
}
}
exports.NodeItem = NodeItem;
//# sourceMappingURL=NodeItem.js.map