7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { Registry } from '../main';
|
|
import { IRawTheme } from '../theme';
|
|
export interface ThemeData {
|
|
themeName: string;
|
|
theme: IRawTheme;
|
|
registry: Registry;
|
|
}
|