@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
14 lines (13 loc) • 352 B
TypeScript
/**
* Provides options for the {@link Instruction `Instruction`} class.
*/
export interface IInstructionOptions {
/**
* The name of the file to save the compiled instruction to.
*/
FileName: string;
/**
* A value indicating whether the instruction should be executed in standalone-mode.
*/
Standalone?: boolean;
}