UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

30 lines 578 B
/** * Represents an item of a node. */ export class NodeItem { /** * Initializes a new instance of the {@link NodeItem `NodeItem`} class. * * @param node * The node of the item. */ 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. * * @returns * The objects of the node. */ GetObjects() { return {}; } } //# sourceMappingURL=NodeItem.js.map