woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
12 lines (11 loc) • 348 B
TypeScript
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>>;
}