Files
vscode/src/vscode-dts/vscode.proposed.codeActionRanges.d.ts
2024-02-20 15:44:06 -08:00

16 lines
624 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {
export interface CodeAction {
/**
* 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[];
}
}