UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

27 lines (26 loc) 794 B
import { BBCodeInstruction } from "../../PackageSystem/Instructions/Customization/BBCodeInstruction"; import { NamedObjectDeletionFileCompiler } from "../NamedObjectDeletionFileCompiler"; /** * Provides the functionality to compile bb-codes. */ export declare class BBCodeFileCompiler extends NamedObjectDeletionFileCompiler<BBCodeInstruction> { /** * Initializes a new instance of the `BBCodeFileCompiler` class. * * @param item * The item to compile. */ constructor(item: BBCodeInstruction); /** * @inheritdoc */ protected readonly SchemaLocation: string; /** * @inheritdoc */ protected readonly ObjectTagName: string; /** * @inheritdoc */ protected CreateImport(): Element; }