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