UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

23 lines (22 loc) 783 B
import { ILocalizationItemOptions } from "../../../Globalization/ILocalizationItemOptions"; import { INodeSystemInstructionOptions } from "../NodeSystem/INodeSystemInstructionOptions"; import { TranslationInstruction } from "./TranslationInstruction"; /** * Represents an instruction which provides translations. */ export declare class ErrorMessageInstruction extends TranslationInstruction { /** * Initializes a new instance of the `ErrorMessageInstruction` class. */ constructor(options: INodeSystemInstructionOptions<ILocalizationItemOptions>); /** * @inheritdoc */ GetMessages(): { [locale: string]: { [category: string]: { [key: string]: string; }; }; }; }