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