diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/scopes.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/code/src/scopes.ts b/editors/code/src/scopes.ts index 465556333..f98b57452 100644 --- a/editors/code/src/scopes.ts +++ b/editors/code/src/scopes.ts | |||
@@ -9,9 +9,9 @@ export interface TextMateRule { | |||
9 | } | 9 | } |
10 | 10 | ||
11 | export interface TextMateRuleSettings { | 11 | export interface TextMateRuleSettings { |
12 | foreground: string | undefined; | 12 | foreground?: string; |
13 | background: string | undefined; | 13 | background?: string; |
14 | fontStyle: string | undefined; | 14 | fontStyle?: string; |
15 | } | 15 | } |
16 | 16 | ||
17 | // Current theme colors | 17 | // Current theme colors |