woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
27 lines (26 loc) • 791 B
TypeScript
import { EmojiInstruction } from "../../PackageSystem/Instructions/Customization/EmojiInstruction";
import { NamedObjectDeletionFileCompiler } from "../NamedObjectDeletionFileCompiler";
/**
* Provides the functionality to compile emoji-files.
*/
export declare class EmojiFileCompiler extends NamedObjectDeletionFileCompiler<EmojiInstruction> {
/**
* Initializes a new instance of the `EmojiFileCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: EmojiInstruction);
/**
* @inheritdoc
*/
protected readonly SchemaLocation: string;
/**
* @inheritdoc
*/
protected readonly ObjectTagName: string;
/**
* @inheritdoc
*/
protected CreateImport(): Element;
}