UNPKG

@manuth/woltlab-compiler

Version:

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

19 lines (18 loc) 570 B
import { IThemeOptionBase } from "./IThemeOptionBase.js"; /** * Provides options for the {@link ThemeLoader `ThemeLoader`}-class. */ export interface IThemeLoaderOptions extends IThemeOptionBase { /** * The name of the file which contains the `scss`-code of the theme. */ CustomScssFileName?: string; /** * The name of the file which contains `scss`-variables overrides. */ ScssOverrideFileName?: string; /** * The name of the file which contains additional variables of the theme. */ VariableFileName?: string; }