UNPKG

woltlab-compiler

Version:

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

30 lines (29 loc) 693 B
import { Compiler } from "../Compiler"; /** * Provides the functionality to compile localization-sets. */ export declare class LocalizationSetCompiler extends Compiler<{ [locale: string]: { [category: string]: { [key: string]: string; }; }; }> { /** * Initializes a new instance of the `LocalizationSetCompiler` class. * * @param item * The item to compile. */ constructor(item: { [locale: string]: { [category: string]: { [key: string]: string; }; }; }); /** * @inheritdoc */ protected Compile(): Promise<void>; }