@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
15 lines (14 loc) • 369 B
TypeScript
import { Instruction } from "./Instruction.js";
/**
* Provides options for the {@link InstructionSet `InstructionSet`} class.
*/
export interface IInstructionSetOptions {
/**
* The directory to save the components of this set.
*/
Directory?: string;
/**
* The instructions of the instruction-set.
*/
Instructions: Instruction[];
}