import { BasicEvent } from '@opensumi/ide-core-common'; import { ITheme } from './theme.service'; export class ThemeChangedEvent extends BasicEvent {} export interface IThemeChangedEventPayload { theme: ITheme; }