Use optional value shortcut

This commit is contained in:
Aleksey Kladov 2019-12-31 02:27:26 +01:00
parent 6561634c68
commit 96de8076ff

View file

@ -9,9 +9,9 @@ export interface TextMateRule {
} }
export interface TextMateRuleSettings { export interface TextMateRuleSettings {
foreground: string | undefined; foreground?: string;
background: string | undefined; background?: string;
fontStyle: string | undefined; fontStyle?: string;
} }
// Current theme colors // Current theme colors