UNPKG

@manuth/woltlab-compiler

Version:

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

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