mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-27 02:27:53 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
18 lines
628 B
TypeScript
18 lines
628 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 ChatPromptReference {
|
|
/**
|
|
* When true, the user has indicated at the reference is informational only.
|
|
* The model should avoid changing or suggesting changes to the reference.
|
|
*/
|
|
readonly isReadonly?: boolean;
|
|
}
|
|
|
|
}
|