@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
15 lines (14 loc) • 405 B
TypeScript
import { IInstructionOptions } from "./IInstructionOptions.js";
/**
* Provides options for the {@link PHPInstruction `PHPInstruction`} class.
*/
export interface IPHPInstructionOptions extends IInstructionOptions {
/**
* The name of the file to load the php-script from.
*/
FileName: string;
/**
* The application to load the php-file from.
*/
Application: string;
}