diff --git a/types/vscode/index.d.ts b/types/vscode/index.d.ts index 1041352d6d9015..25fef02385cf2d 100644 --- a/types/vscode/index.d.ts +++ b/types/vscode/index.d.ts @@ -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 */ @@ -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; @@ -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; @@ -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. * @@ -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); } diff --git a/types/vscode/package.json b/types/vscode/package.json index 65c0cab97a647d..241a7e0405ecdc 100644 --- a/types/vscode/package.json +++ b/types/vscode/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@types/vscode", - "version": "1.102.9999", + "version": "1.103.9999", "projects": [ "https://github.com/microsoft/vscode" ],