UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

20 lines (19 loc) 660 B
import { FileDescriptor } from "../../../PackageSystem/FileDescriptor"; import { IImageDirectoryDescriptorOptions } from "./IImageDirectoryDescriptorOptions"; /** * 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 `ImageFolderDescriptor` class. */ constructor(options: IImageDirectoryDescriptorOptions); /** * Gets or sets the folder to upload the images to. */ DestinationRoot: string; }