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