@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
18 lines (17 loc) • 421 B
TypeScript
/**
* Provides the names of the theme-variables.
*/
export declare abstract class ThemeVariables {
/**
* The names of the theme-variables.
*/
private static variableNames;
/**
* Initializes a new instance of the {@link ThemeVariables `ThemeVariables`} class.
*/
private constructor();
/**
* Gets the names of the theme-variables.
*/
static get Names(): string[];
}