@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
11 lines (10 loc) • 392 B
TypeScript
import { IFileSystemInstructionOptions } from "./IFileSystemInstructionOptions.js";
/**
* Provides options for the {@link ApplicationFileSystemInstruction `ApplicationFileSystemInstruction`} class.
*/
export interface IApplicationFileSystemInstructionOptions extends IFileSystemInstructionOptions {
/**
* The application to upload the files to.
*/
Application?: string;
}