UNPKG

@manuth/woltlab-compiler

Version:

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

15 lines (14 loc) 428 B
import { PHPInstruction } from "../../../PackageSystem/Instructions/PHPInstruction.js"; import { InstructionCompiler } from "./InstructionCompiler.js"; /** * Provides the functionality to compile PHP-instructions. */ export declare class PHPInstructionCompiler extends InstructionCompiler<PHPInstruction> { /** * @inheritdoc * * @returns * The serialized document. */ Serialize(): Document; }