UNPKG

@manuth/woltlab-compiler

Version:

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

13 lines (12 loc) 493 B
import { IEmojiOptions } from "../../../Customization/Presentation/IEmojiOptions.js"; import { INamedObject } from "../../../INamedObject.js"; import { IDeleteInstructionOptions } from "../IDeleteInstructionOptions.js"; /** * Provides options for the {@link EmojiInstruction `EmojiInstruction`} class. */ export interface IEmojiInstructionOptions extends IDeleteInstructionOptions<INamedObject> { /** * The emojis provided by the instruction. */ Emojis: IEmojiOptions[]; }