UNPKG

woltlab-compiler

Version:

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

30 lines (29 loc) 700 B
import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler"; /** * Provides the functionality to compile theme-variables. */ export declare class ThemeVariableCompiler extends WoltLabXMLCompiler<{ [key: string]: string; }> { /** * Initializes a new instance of the `ThemeVariableCompiler` class. * * @param item * The item to compile. */ constructor(item: { [key: string]: string; }); /** * @inheritdoc */ protected readonly TagName: string; /** * @inheritdoc */ protected readonly SchemaLocation: string; /** * @inheritdoc */ protected CreateDocument(): Document; }