Skip to content

Commit 64de097

Browse files
authored
fix: update @types/vscode version to 1.103 (DefinitelyTyped#73484)
1 parent 79d6175 commit 64de097

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

types/vscode/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*--------------------------------------------------------------------------------------------*/
66

77
/**
8-
* Type Definition for Visual Studio Code 1.102 Extension API
8+
* Type Definition for Visual Studio Code 1.103 Extension API
99
* See https://code.visualstudio.com/api for more information
1010
*/
1111

@@ -3139,12 +3139,12 @@ declare module 'vscode' {
31393139
*/
31403140
export class EvaluatableExpression {
31413141

3142-
/*
3142+
/**
31433143
* The range is used to extract the evaluatable expression from the underlying document and to highlight it.
31443144
*/
31453145
readonly range: Range;
31463146

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

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

2060220602
/**
2060320603
* Construct a prompt-tsx part with the given content.
20604-
* @param value The value of the part, the result of `renderPromptElementJSON` from `@vscode/prompt-tsx`.
20604+
* @param value The value of the part, the result of `renderElementJSON` from `@vscode/prompt-tsx`.
2060520605
*/
2060620606
constructor(value: unknown);
2060720607
}

types/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@types/vscode",
4-
"version": "1.102.9999",
4+
"version": "1.103.9999",
55
"projects": [
66
"https://github.com/microsoft/vscode"
77
],

0 commit comments

Comments
 (0)