no change to vscode.d.ts

This commit is contained in:
Peng Lyu
2025-07-22 15:01:06 -07:00
parent eb405c8828
commit 5a4f2dfd42
3 changed files with 3 additions and 6 deletions
+2 -2
View File
@@ -19429,7 +19429,7 @@ declare module 'vscode' {
/**
* @hidden
*/
constructor(prompt: string, command: string | undefined, references: ChatPromptReference[], participant: string, toolReferences: ChatLanguageModelToolReference[]);
private constructor(prompt: string, command: string | undefined, references: ChatPromptReference[], participant: string, toolReferences: ChatLanguageModelToolReference[]);
}
/**
@@ -19459,7 +19459,7 @@ declare module 'vscode' {
/**
* @hidden
*/
constructor(response: ReadonlyArray<ChatResponseMarkdownPart | ChatResponseFileTreePart | ChatResponseAnchorPart | ChatResponseCommandButtonPart>, result: ChatResult, participant: string);
private constructor(response: ReadonlyArray<ChatResponseMarkdownPart | ChatResponseFileTreePart | ChatResponseAnchorPart | ChatResponseCommandButtonPart>, result: ChatResult, participant: string);
}
/**
+1 -1
View File
@@ -137,7 +137,7 @@ declare module 'vscode' {
/**
* @hidden
*/
private constructor(prompt: string, command: string | undefined, references: ChatPromptReference[], participant: string, toolReferences: ChatLanguageModelToolReference[], editedFileEvents: ChatRequestEditedFileEvent[] | undefined);
constructor(prompt: string, command: string | undefined, references: ChatPromptReference[], participant: string, toolReferences: ChatLanguageModelToolReference[], editedFileEvents: ChatRequestEditedFileEvent[] | undefined);
}
export interface ChatParticipant {
@@ -64,9 +64,6 @@ declare module 'vscode' {
*/
readonly command?: string;
/**
* @hidden
*/
constructor(response: ReadonlyArray<ChatResponseMarkdownPart | ChatResponseFileTreePart | ChatResponseAnchorPart | ChatResponseCommandButtonPart | ExtendedChatResponsePart>, result: ChatResult, participant: string);
}