UNPKG

woltlab-compiler

Version:

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

21 lines (20 loc) 682 B
import { IPackageFileDescriptorOptions } from "./IPackageFileDescriptorOptions"; import { PackageDescriptor } from "./PackageDescriptor"; /** * Provides an abstraction of a package stored in a file. */ export declare class PackageFileDescriptor extends PackageDescriptor { /** * The filename of the package */ private fileName; /** * Initializes a new instance of the `PackageFileDescriptor` class. */ constructor(options: IPackageFileDescriptorOptions); /** * The filename of the package. * Please keep in mind to provide the file using the `Package.AdditionalFiles`-property. */ FileName: string; }