UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

23 lines (22 loc) 729 B
import { ILocalizationInstruction } from "../../../PackageSystem/Instructions/Globalization/ILocalizationInstruction"; import { InstructionCompiler } from "./InstructionCompiler"; /** * Provides the functionality to compile `ILocalizationInstruction`s. */ export declare class LocalizationInstructionCompiler extends InstructionCompiler<ILocalizationInstruction> { /** * Initializes a new instance of the `LocalizationInstructionCompiler` class. * * @param item * The item to compile. */ constructor(item: ILocalizationInstruction); /** * @inheritdoc */ Serialize(): Document; /** * @inheritdoc */ protected Compile(): Promise<void>; }