renaming the proposal to codeActionAI

This commit is contained in:
Aiday Marlen Kyzy
2023-10-03 15:56:34 +02:00
parent 6a12dc58c5
commit c7d2fd9974
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------------------------
* 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 {
/**
* Marks this as an AI action.
*
* Ex: A quick fix should be marked AI if it invokes AI.
*/
isAI?: boolean;
}
}