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