code action ranges api doc improvements (#205771)

doc improvements
This commit is contained in:
Justin Chen
2024-02-20 15:44:06 -08:00
committed by GitHub
parent 5e9e54773a
commit 926bf1a1f2

View File

@@ -7,10 +7,8 @@ declare module 'vscode' {
export interface CodeAction {
/**
*
* The range to which this Code Action applies to, which will be highlighted.
*
* Ex: A refactoring action will highlight the range of text that will be affected.
* The ranges to which this Code Action applies to, which will be highlighted.
* For example: A refactoring action will highlight the range of text that will be affected.
*/
ranges?: Range[];
}