UNPKG

@manuth/woltlab-compiler

Version:

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

18 lines (17 loc) 492 B
import { IInstruction } from "../IInstruction.js"; /** * Represents a node which provides translations. */ export interface ILocalizationInstruction extends IInstruction { /** * Gets the path to save the translations to. */ TranslationDirectory: string; /** * Gets the messages provided by the instruction. * * @returns * The messages of the options-instruction. */ GetMessages(): Record<string, Record<string, Record<string, string>>>; }