UNPKG

woltlab-compiler

Version:

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

12 lines (11 loc) 348 B
import { INode } from "../../../NodeSystem/Generic/INode"; import { IInstruction } from "../IInstruction"; /** * Represents an instruction which provides nodes. */ export interface INodeSystemInstruction<T> extends IInstruction { /** * Gets the nodes provides by the instruction. */ Nodes: ReadonlyArray<INode<T>>; }