UNPKG

@manuth/woltlab-compiler

Version:

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

30 lines (29 loc) 844 B
import { EmojiInstruction } from "../../PackageSystem/Instructions/Customization/EmojiInstruction.js"; import { NamedObjectDeletionFileCompiler } from "../NamedObjectDeletionFileCompiler.js"; /** * Provides the functionality to compile emoji-files. */ export declare class EmojiFileCompiler extends NamedObjectDeletionFileCompiler<EmojiInstruction> { /** * Initializes a new instance of the {@link EmojiFileCompiler `EmojiFileCompiler`} class. * * @param item * The item to compile. */ constructor(item: EmojiInstruction); /** * @inheritdoc */ protected get SchemaLocation(): string; /** * @inheritdoc */ protected get ObjectTagName(): string; /** * @inheritdoc * * @returns * The serialized import. */ protected CreateImport(): Element; }