UNPKG

@manuth/woltlab-compiler

Version:

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

15 lines (14 loc) 279 B
import { INode } from "./INode.js"; /** * Represents an item of a node. */ export interface INodeItem { /** * The node of the item. */ Node: INode; /** * Gets the identifiable objects of the node. */ GetObjects(): Record<string, unknown>; }