Skip to content

Commit

Permalink
fixup types
Browse files Browse the repository at this point in the history
  • Loading branch information
camdencheek committed Jan 16, 2025
1 parent 3a7180d commit cfc88dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vscode/src/chat/chat-view/ChatController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export interface ChatControllerOptions {
extensionUri: vscode.Uri
chatClient: Pick<ChatClient, 'chat'>

contextRetriever: Pick<ContextRetriever, 'retrieveContext'|'computeDidYouMean'>
contextRetriever: Pick<ContextRetriever, 'retrieveContext' | 'computeDidYouMean'>
chatIntentAPIClient: ChatIntentAPIClient | null

extensionClient: Pick<ExtensionClient, 'capabilities'>
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/chat/chat-view/handlers/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { ContextRetriever } from '../ContextRetriever'
import type { OmniboxTelemetry } from './OmniboxTelemetry'

export interface AgentTools {
contextRetriever: Pick<ContextRetriever, 'retrieveContext'|'computeDidYouMean'>
contextRetriever: Pick<ContextRetriever, 'retrieveContext' | 'computeDidYouMean'>
editor: ChatControllerOptions['editor']
chatClient: ChatControllerOptions['chatClient']
}
Expand Down

0 comments on commit cfc88dc

Please sign in to comment.