diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-07-23 19:39:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 19:39:14 +0100 |
commit | a45a40533eb25c5a12df98189338320f8aa6dcc4 (patch) | |
tree | 5cfa841deb39f933ace9336f76e1dce4d8c7d2ff /cli/lsp/tsc.rs | |
parent | 9806064ac22680c732f64f990e672a58e946a58a (diff) |
fix(lsp): rewrite import for 'infer return type' action (#24685)
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 6c808a5e4..4592edad4 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -2944,7 +2944,7 @@ pub fn file_text_changes_to_workspace_edit( #[derive(Debug, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct RefactorEditInfo { - edits: Vec<FileTextChanges>, + pub edits: Vec<FileTextChanges>, #[serde(skip_serializing_if = "Option::is_none")] pub rename_location: Option<u32>, } |