@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
27 lines (26 loc) • 847 B
TypeScript
import { FileDescriptor } from "../../../PackageSystem/FileDescriptor.js";
import { IImageDirectoryDescriptorOptions } from "./IImageDirectoryDescriptorOptions.js";
/**
* Provides a description of a directory which contains images.
*/
export declare class ImageDirectoryDescriptor extends FileDescriptor {
/**
* The folder to upload the images to.
*/
private destinationRoot;
/**
* Initializes a new instance of the {@link ImageDirectoryDescriptor `ImageDirectoryDescriptor`} class.
*
* @param options
* The options of the image-directory descriptor.
*/
constructor(options: IImageDirectoryDescriptorOptions);
/**
* Gets or sets the folder to upload the images to.
*/
get DestinationRoot(): string;
/**
* @inheritdoc
*/
set DestinationRoot(value: string);
}