@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
12 lines (11 loc) • 343 B
TypeScript
import { INode } from "../../../NodeSystem/Generic/INode.js";
import { IInstruction } from "../IInstruction.js";
/**
* Represents an instruction which provides nodes.
*/
export interface INodeSystemInstruction<T> extends IInstruction {
/**
* Gets the nodes provides by the instruction.
*/
Nodes: ReadonlyArray<INode<T>>;
}