UNPKG

woltlab-compiler

Version:

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

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