UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

19 lines (18 loc) 672 B
import { BBCodeInstruction } from "../../../PackageSystem/Instructions/Customization/BBCodeInstruction.js"; import { LocalizationProviderCompiler } from "./LocalizationProviderCompiler.js"; /** * Provides the functionality to compile bb-code instructions. */ export declare class BBCodeInstructionCompiler extends LocalizationProviderCompiler<BBCodeInstruction> { /** * Initializes a new instance of the {@link BBCodeInstructionCompiler `BBCodeInstructionCompiler`} class. * * @param item * The instruction to compile. */ constructor(item: BBCodeInstruction); /** * @inheritdoc */ protected Compile(): Promise<void>; }