Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions types/vscode/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*--------------------------------------------------------------------------------------------*/

/**
* Type Definition for Visual Studio Code 1.102 Extension API
* Type Definition for Visual Studio Code 1.103 Extension API
* See https://code.visualstudio.com/api for more information
*/

Expand Down Expand Up @@ -3139,12 +3139,12 @@ declare module 'vscode' {
*/
export class EvaluatableExpression {

/*
/**
* The range is used to extract the evaluatable expression from the underlying document and to highlight it.
*/
readonly range: Range;

/*
/**
* If specified the expression overrides the extracted expression.
*/
readonly expression?: string | undefined;
Expand Down Expand Up @@ -18841,7 +18841,7 @@ declare module 'vscode' {
* Creates a {@link FileCoverage} instance with counts filled in from
* the coverage details.
* @param uri Covered file URI
* @param detailed Detailed coverage information
* @param details Detailed coverage information
*/
static fromDetails(uri: Uri, details: readonly FileCoverageDetail[]): FileCoverage;

Expand Down Expand Up @@ -20411,7 +20411,7 @@ declare module 'vscode' {
* any custom flow.
*
* In the former case, the caller shall pass the
* {@link LanguageModelToolInvocationOptions.toolInvocationToken toolInvocationToken}, which comes with the a
* {@link LanguageModelToolInvocationOptions.toolInvocationToken toolInvocationToken}, which comes from a
* {@link ChatRequest.toolInvocationToken chat request}. This makes sure the chat UI shows the tool invocation for the
* correct conversation.
*
Expand Down Expand Up @@ -20601,7 +20601,7 @@ declare module 'vscode' {

/**
* Construct a prompt-tsx part with the given content.
* @param value The value of the part, the result of `renderPromptElementJSON` from `@vscode/prompt-tsx`.
* @param value The value of the part, the result of `renderElementJSON` from `@vscode/prompt-tsx`.
*/
constructor(value: unknown);
}
Expand Down
2 changes: 1 addition & 1 deletion types/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@types/vscode",
"version": "1.102.9999",
"version": "1.103.9999",
"projects": [
"https://github.com/microsoft/vscode"
],
Expand Down