woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
15 lines (14 loc) • 393 B
TypeScript
import { IInstructionOptions } from "./IInstructionOptions";
/**
* Provides options for the `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;
}