woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
19 lines (18 loc) • 551 B
TypeScript
import { IFileDescriptorOptions } from "../../../PackageSystem/IFileDescriptorOptions";
/**
* Provides options for the `ImageDirectoryDescriptor` class.
*/
export interface IImageDirectoryDescriptorOptions extends Partial<IFileDescriptorOptions> {
/**
* The directory to load the pictures from.
*/
Source: string;
/**
* The directory to upload the pictures to.
*/
DestinationRoot?: string;
/**
* The filename of the archive to compress the pictures to.
*/
FileName?: string;
}