woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
23 lines (22 loc) • 733 B
TypeScript
import { ApplicationFileSystemInstruction } from "../../../PackageSystem/Instructions/FileSystem/ApplicationFileSystemInstruction";
import { InstructionCompiler } from "./InstructionCompiler";
/**
* Provides the functionality to compile a file-instruction.
*/
export declare class FileInstructionCompiler extends InstructionCompiler<ApplicationFileSystemInstruction> {
/**
* Initializes a new instance of the `FileInstructionCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: ApplicationFileSystemInstruction);
/**
* @inheritdoc
*/
Serialize(): Document;
/**
* @inheritdoc
*/
protected Compile(): Promise<void>;
}