mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +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 {
|
export interface TextMateRuleSettings {
|
||||||
foreground: string | undefined;
|
foreground?: string;
|
||||||
background: string | undefined;
|
background?: string;
|
||||||
fontStyle: string | undefined;
|
fontStyle?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Current theme colors
|
// Current theme colors
|
||||||
|
|
Loading…
Reference in a new issue