UNPKG

@manuth/woltlab-compiler

Version:

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

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