Files
BetterSEQTA-Plus/src/plugins/built-in/themes/index.ts
T
2025-03-29 22:33:06 +11:00

18 lines
410 B
TypeScript

import type { Plugin } from '../../core/types';
import { ThemeManager } from './theme-manager';
const themesPlugin: Plugin = {
id: 'themes',
name: 'Themes',
description: 'Adds a theme selector to the settings page',
version: '1.0.0',
settings: {},
run: async (_) => {
const themeManager = ThemeManager.getInstance();
await themeManager.initialize();
}
};
export default themesPlugin;