UNPKG

@manuth/woltlab-compiler

Version:

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

20 lines (19 loc) 709 B
import { EmojiInstruction } from "../../../PackageSystem/Instructions/Customization/EmojiInstruction.js"; import { Compiler } from "../../Compiler.js"; import { InstructionFileCompiler } from "./InstructionFileCompiler.js"; /** * Provides the functionality to compile emoji-instructions. */ export declare class EmojiInstructionCompiler extends InstructionFileCompiler<EmojiInstruction> { /** * Initializes a new instance of the {@link EmojiInstructionCompiler `EmojiInstructionCompiler`} class. * * @param item * The item to compile. */ constructor(item: EmojiInstruction); /** * @inheritdoc */ protected get FileCompiler(): Compiler<EmojiInstruction>; }