UNPKG

woltlab-compiler

Version:

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

12 lines (11 loc) 376 B
import { INodeOptions } from "../../../NodeSystem/INodeOptions"; import { IInstructionOptions } from "../IInstructionOptions"; /** * Represents an instruction which provides nodes. */ export interface INodeSystemInstructionOptions<T> extends IInstructionOptions { /** * The nodes provided by the instruction. */ Nodes: Array<INodeOptions<T>>; }