Skip to content

Commit 4b7ab03

Browse files
authored
fix: improve the exports of models (#507)
* fix: improve the exports of models * fix: improve the variables exported by molecule
1 parent 00e8f7b commit 4b7ab03

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/molecule.api.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ export * as i18n from 'mo/i18n';
88
export * from 'mo/workbench';
99
export * from 'mo/services';
1010

11-
export {
12-
IExtension,
13-
IColorTheme,
14-
ISettings,
15-
IColors,
16-
TokenColor,
17-
ColorScheme,
18-
} from 'mo/model';
11+
export * as models from 'mo/model';
1912

2013
import {
2114
ILayoutService,

src/services/theme/colorThemeService.ts

+6
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,18 @@ export interface IColorThemeService {
5555
reset(): void;
5656
}
5757

58+
/**
59+
* @ignore
60+
*/
5861
export const BuiltInColorTheme: IColorTheme = {
5962
id: 'Default Dark+',
6063
name: 'Default Dark+',
6164
label: 'Default Dark+',
6265
uiTheme: 'vs-dark',
6366
};
67+
/**
68+
* @ignore
69+
*/
6470
export const DEFAULT_THEME_CLASS_NAME = prefixClaName('customize-theme');
6571

6672
@singleton()

0 commit comments

Comments
 (0)