UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

26 lines (25 loc) 822 B
import { SelfContainedPHPInstruction } from "../../../PackageSystem/Instructions/SelfContainedPHPInstruction.js"; import { InstructionCompiler } from "./InstructionCompiler.js"; /** * Provides the functionality to compile self-contained php-instructions. */ export declare class SelfContainedPHPInstructionCompiler extends InstructionCompiler<SelfContainedPHPInstruction> { /** * Initializes a new instance of the {@link SelfContainedPHPInstructionCompiler `SelfContainedPHPInstructionCompiler`} class. * * @param item * The item to compile. */ constructor(item: SelfContainedPHPInstruction); /** * @inheritdoc * * @returns * The serialized document. */ Serialize(): Document; /** * @inheritdoc */ protected Compile(): Promise<void>; }