@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
15 lines (14 loc) • 400 B
TypeScript
import { IThemeOptionBase } from "./IThemeOptionBase.js";
/**
* Provides options for the {@link Theme `Theme`}-class.
*/
export interface IThemeOptions extends IThemeOptionBase {
/**
* The custom `scss`-code of the theme.
*/
CustomScss?: string;
/**
* The custom `scss`-code containing variable-overrides of special `scss`-variables.
*/
ScssOverride?: string;
}