@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
19 lines (18 loc) • 583 B
TypeScript
import { IApplicationFileSystemInstructionOptions } from "./FileSystem/IApplicationFileSystemInstructionOptions.js";
/**
* Provides options for the {@link SelfContainedPHPInstruction `SelfContainedPHPInstruction`} class.
*/
export interface ISelfContainedPHPInstructionOptions extends IApplicationFileSystemInstructionOptions {
/**
* The application to upload the file to.
*/
Application?: string;
/**
* The path to load the php-file from.
*/
Source: string;
/**
* The path to upload the php-file to.
*/
Destination: string;
}