UNPKG

@manuth/woltlab-compiler

Version:

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

19 lines (18 loc) 496 B
import { IOptionOptions } from "../IOptionOptions.js"; /** * Provides options for the {@link ACPOption `ACPOption`} class. */ export interface IACPOptionOptions extends IOptionOptions { /** * A value indicating whether the option is visible. */ Visible?: boolean; /** * A value indicating whether the option is localizable. */ Localizable?: boolean; /** * A value indicating whether to force localization. */ ForceLocalization?: boolean; }