File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ export const baseRuntime = (connections: { reader: MessageReader; writer: Messag
138
138
onSourceLinkClick : handler => lspConnection . onNotification ( sourceLinkClickNotificationType . method , handler ) ,
139
139
onFollowUpClicked : handler => lspConnection . onNotification ( followUpClickNotificationType . method , handler ) ,
140
140
openTab : params => lspConnection . sendRequest ( openTabRequestType . method , params ) ,
141
- chatUpdate : params => lspConnection . sendNotification ( chatUpdateNotificationType . method , params ) ,
141
+ sendChatUpdate : params => lspConnection . sendNotification ( chatUpdateNotificationType . method , params ) ,
142
142
onFileClicked : handler => lspConnection . onNotification ( fileClickNotificationType . method , handler ) ,
143
143
}
144
144
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export class BaseChat implements Chat {
98
98
return this . connection . sendRequest ( openTabRequestType . method , params )
99
99
}
100
100
101
- public chatUpdate ( params : ChatUpdateParams ) {
101
+ public sendChatUpdate ( params : ChatUpdateParams ) {
102
102
this . connection . sendNotification ( chatUpdateNotificationType . method , params )
103
103
}
104
104
Original file line number Diff line number Diff line change @@ -42,6 +42,6 @@ export type Chat = {
42
42
onInfoLinkClick : ( handler : NotificationHandler < InfoLinkClickParams > ) => void
43
43
onSourceLinkClick : ( handler : NotificationHandler < SourceLinkClickParams > ) => void
44
44
onFollowUpClicked : ( handler : NotificationHandler < FollowUpClickParams > ) => void
45
- chatUpdate : ( params : ChatUpdateParams ) => void
45
+ sendChatUpdate : ( params : ChatUpdateParams ) => void
46
46
onFileClicked : ( handler : NotificationHandler < FileClickParams > ) => void
47
47
}
You can’t perform that action at this time.
0 commit comments