@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
19 lines (18 loc) • 400 B
TypeScript
import { ILocalization } from "../Globalization/ILocalization.js";
/**
* Provides options for the {@link OptionItem `OptionItem`} class.
*/
export interface IOptionItemOptions {
/**
* The name of the item.
*/
Name: string;
/**
* The human-readable name of the item.
*/
DisplayName?: ILocalization;
/**
* The value of the item.
*/
Value: any;
}