forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.ts
More file actions
31 lines (26 loc) · 711 Bytes
/
messages.ts
File metadata and controls
31 lines (26 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
export enum CssMessages {
GetCssRequest = 'get_css_request',
GetCssResponse = 'get_css_response',
GetMonacoThemeRequest = 'get_monaco_theme_request',
GetMonacoThemeResponse = 'get_monaco_theme_response'
}
export enum SharedMessages {
UpdateSettings = 'update_settings',
Started = 'started',
LocInit = 'loc_init',
StyleUpdate = 'style_update'
}
export interface IGetCssRequest {
isDark: boolean;
}
export interface IGetMonacoThemeRequest {
isDark: boolean;
}
export interface IGetCssResponse {
css: string;
theme: string;
knownDark?: boolean;
}