@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
19 lines (18 loc) • 569 B
TypeScript
import { IFileDescriptorOptions } from "../../../PackageSystem/IFileDescriptorOptions.js";
/**
* Provides options for the {@link ImageDirectoryDescriptor `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;
}