woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
14 lines (13 loc) • 345 B
TypeScript
/**
* Provides options for the `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;
}