woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
16 lines (15 loc) • 580 B
TypeScript
import { BBCodeInstruction } from "../../../PackageSystem/Instructions/Customization/BBCodeInstruction";
import { LocalizationProviderCompiler } from "./LocalizationProviderCompiler";
/**
* Provides the functionality to compile bb-code instructions.
*/
export declare class BBCodeInstructionCompiler extends LocalizationProviderCompiler<BBCodeInstruction> {
/**
* Initializes a new instance of the `BBCodeInstructionCompiler`.
*/
constructor(item: BBCodeInstruction);
/**
* @inheritdoc
*/
protected Compile(): Promise<void>;
}