@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
18 lines (17 loc) • 563 B
TypeScript
import { Compiler } from "../Compiler.js";
/**
* Provides the functionality to compile localization-sets.
*/
export declare class LocalizationSetCompiler extends Compiler<Record<string, Record<string, Record<string, string>>>> {
/**
* Initializes a new instance of the {@link LocalizationSetCompiler `LocalizationSetCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item: Record<string, Record<string, Record<string, string>>>);
/**
* @inheritdoc
*/
protected Compile(): Promise<void>;
}