UNPKG

woltlab-compiler

Version:

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

12 lines (11 loc) 402 B
import { IThemeOptions } from "../../../../Customization/Presentation/Themes/IThemeOptions"; import { IInstructionOptions } from "../../IInstructionOptions"; /** * Provides options for the `ThemeInstruction` class. */ export interface IThemeInstructionOptions extends Partial<IInstructionOptions> { /** * The theme provided by the instruction. */ Theme: IThemeOptions; }