UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

25 lines (24 loc) 504 B
import { INode } from "./INode"; /** * Represents an item of a node. */ export declare class NodeItem { /** * The node of the item. */ private node; /** * Initializes a new instance of the `NodeItem` class. */ constructor(node: INode); /** * Gets or sets the node of the item. */ readonly Node: INode; /** * Gets the identifiable objects of the node. */ GetObjects(): { [id: string]: any; }; }