woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
19 lines (18 loc) • 396 B
TypeScript
import { ILocalization } from "../Globalization/ILocalization";
/**
* Provides options for the `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;
}