UNPKG

@manuth/woltlab-compiler

Version:

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

29 lines (28 loc) 793 B
import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler.js"; /** * Provides the functionality to compile localization-files. */ export declare class LocalizationFileCompiler extends WoltLabXMLCompiler<[string, Record<string, Record<string, string>>]> { /** * Initializes a new instance of the {@link LocalizationFileCompiler `LocalizationFileCompiler`} class. * * @param item * The item to compile. */ constructor(item: [string, Record<string, Record<string, string>>]); /** * @inheritdoc */ protected get TagName(): string; /** * @inheritdoc */ protected get SchemaLocation(): string; /** * @inheritdoc * * @returns * The serialized document. */ protected CreateDocument(): Document; }