1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6declare module 'vscode' { 7 8 export interface CodeAction { 9 /** 10 * Marks this as an AI action. 11 * 12 * Ex: A quick fix should be marked AI if it invokes AI. 13 */ 14 isAI?: boolean; 15 } 16} 17 18