woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
19 lines (18 loc) • 609 B
TypeScript
import { ThemeInstruction } from "../../../PackageSystem/Instructions/Customization/Presentation/ThemeInstruction";
import { InstructionCompiler } from "./InstructionCompiler";
/**
* Provides the functionality to compile themes.
*/
export declare class ThemeInstructionCompiler extends InstructionCompiler<ThemeInstruction> {
/**
* Initializes a new instance of the `ThemeInstructionCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: ThemeInstruction);
/**
* @inheritdoc
*/
protected Compile(): Promise<void>;
}