UNPKG

woltlab-compiler

Version:

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

27 lines (26 loc) 715 B
import { Theme } from "../../Customization/Presentation/Themes/Theme"; import { Compiler } from "../Compiler"; /** * Provides the functionality to compile themes. */ export declare class ThemeCompiler extends Compiler<Theme> { /** * The name to save the variables to. */ private variableFileName; /** * Initializes a new instance of the `ThemeCompiler<T>` class. * * @param item * The item to compile. */ constructor(item: Theme, variableFileName?: string); /** * Gets or sets the filename to save variables to. */ VariableFileName: string; /** * @inheritdoc */ protected Compile(): Promise<void>; }