mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Use optional value shortcut
This commit is contained in:
parent
6561634c68
commit
96de8076ff
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@ export interface TextMateRule {
|
|||
}
|
||||
|
||||
export interface TextMateRuleSettings {
|
||||
foreground: string | undefined;
|
||||
background: string | undefined;
|
||||
fontStyle: string | undefined;
|
||||
foreground?: string;
|
||||
background?: string;
|
||||
fontStyle?: string;
|
||||
}
|
||||
|
||||
// Current theme colors
|
||||
|
|
Loading…
Reference in a new issue