@manuth/generator-wsc-package
Version:
A Generator for WoltLab Suite Core Packages.
15 lines (14 loc) • 459 B
TypeScript
import { IFileUploadComponentOptions } from "../../../Settings/IFileUploadComponentOptions.js";
/**
* Represents options for php-script instructions.
*/
export interface IPHPScriptComponentOptions extends IFileUploadComponentOptions {
/**
* A value indicating whether the file should be uploaded to the server.
*/
SelfContained: boolean;
/**
* The name of the php-script file to execute or upload.
*/
FileName: string;
}