woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
27 lines (26 loc) • 644 B
TypeScript
import { IFileDescriptorOptions } from "./IFileDescriptorOptions";
/**
* Provides a description of a file.
*/
export declare class FileDescriptor {
/**
* The path to load the file from.
*/
private source;
/**
* The filename to save the file to.
*/
private fileName;
/**
* Initializes a new instance of the `FileDescriptor` class.
*/
constructor(options: IFileDescriptorOptions);
/**
* Gets or sets the path to load the file from.
*/
Source: string;
/**
* Gets ort sets the filename to save the file to.
*/
FileName: string;
}