UNPKG

@manuth/woltlab-compiler

Version:

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

29 lines (28 loc) 596 B
import { INode } from "./INode.js"; /** * Represents an item of a node. */ export declare class NodeItem { /** * The node of the item. */ private node; /** * Initializes a new instance of the {@link NodeItem `NodeItem`} class. * * @param node * The node of the item. */ constructor(node: INode); /** * Gets or sets the node of the item. */ get Node(): INode; /** * Gets the identifiable objects of the node. * * @returns * The objects of the node. */ GetObjects(): Record<string, unknown>; }