woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
20 lines (19 loc) • 701 B
TypeScript
import { EmojiInstruction } from "../../../PackageSystem/Instructions/Customization/EmojiInstruction";
import { Compiler } from "../../Compiler";
import { TemplateInstructionCompiler } from "./TemplateInstructionCompiler";
/**
* Provides the functionality to compile emoji-instructions.
*/
export declare class EmojiInstructionCompiler extends TemplateInstructionCompiler<EmojiInstruction> {
/**
* Initializes a new instance of the `EmojiInstructionCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: EmojiInstruction);
/**
* @inheritdoc
*/
protected readonly FileCompiler: Compiler<EmojiInstruction>;
}