UNPKG

@manuth/woltlab-compiler

Version:

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

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