UNPKG

woltlab-compiler

Version:

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

17 lines (16 loc) 303 B
import { INode } from "./INode"; /** * Represents an item of a node. */ export interface INodeItem { /** * The node of the item. */ Node: INode; /** * Gets the identifiable objects of the node. */ GetObjects(): { [id: string]: any; }; }