woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
34 lines (33 loc) • 815 B
TypeScript
import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler";
/**
* Provides the functionality to compile localization-files.
*/
export declare class LocalizationFileCompiler extends WoltLabXMLCompiler<[string, {
[category: string]: {
[key: string]: string;
};
}]> {
/**
* Initializes a new instance of the `LocalizationFileCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: [string, {
[category: string]: {
[key: string]: string;
};
}]);
/**
* @inheritdoc
*/
protected readonly TagName: string;
/**
* @inheritdoc
*/
protected readonly SchemaLocation: string;
/**
* @inheritdoc
*/
protected CreateDocument(): Document;
}