UNPKG

@manuth/woltlab-compiler

Version:

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

23 lines (22 loc) 863 B
import { ILocalizationItemOptions } from "../../../Globalization/ILocalizationItemOptions.js"; import { INodeSystemInstructionOptions } from "../NodeSystem/INodeSystemInstructionOptions.js"; import { TranslationInstruction } from "./TranslationInstruction.js"; /** * Represents an instruction which provides translations. */ export declare class ErrorMessageInstruction extends TranslationInstruction { /** * Initializes a new instance of the {@link ErrorMessageInstruction `ErrorMessageInstruction`} class. * * @param options * The options of the error-message. */ constructor(options: INodeSystemInstructionOptions<ILocalizationItemOptions>); /** * @inheritdoc * * @returns * The messages of the options-instruction. */ GetMessages(): Record<string, Record<string, Record<string, string>>>; }