File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,7 @@ export * as i18n from 'mo/i18n';
8
8
export * from 'mo/workbench' ;
9
9
export * from 'mo/services' ;
10
10
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' ;
19
12
20
13
import {
21
14
ILayoutService ,
Original file line number Diff line number Diff line change @@ -55,12 +55,18 @@ export interface IColorThemeService {
55
55
reset ( ) : void ;
56
56
}
57
57
58
+ /**
59
+ * @ignore
60
+ */
58
61
export const BuiltInColorTheme : IColorTheme = {
59
62
id : 'Default Dark+' ,
60
63
name : 'Default Dark+' ,
61
64
label : 'Default Dark+' ,
62
65
uiTheme : 'vs-dark' ,
63
66
} ;
67
+ /**
68
+ * @ignore
69
+ */
64
70
export const DEFAULT_THEME_CLASS_NAME = prefixClaName ( 'customize-theme' ) ;
65
71
66
72
@singleton ( )
You can’t perform that action at this time.
0 commit comments