theme could be in plugin

This commit is contained in:
Jan Prochazka
2022-01-29 18:17:04 +01:00
parent 157325f605
commit a49296e165
7 changed files with 17 additions and 6 deletions

View File

@@ -22,9 +22,10 @@ export interface FileFormatDefinition {
}
export interface ThemeDefinition {
className: string;
themeClassName: string;
themeName: string;
themeType: 'light' | 'dark';
themeCss?: string;
}
export interface PluginDefinition {