File tree 3 files changed +8
-3
lines changed
tests/baselines/reference/api 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ namespace ts.server {
290
290
const args : protocol . FileLocationRequestArgs = this . createFileLocationRequestArgs ( fileName , position ) ;
291
291
292
292
const request = this . processRequest < protocol . DefinitionRequest > ( CommandNames . DefinitionAndBoundSpan , args ) ;
293
- const response = this . processResponse < protocol . DefinitionInfoAndBoundSpanReponse > ( request ) ;
293
+ const response = this . processResponse < protocol . DefinitionInfoAndBoundSpanResponse > ( request ) ;
294
294
const body = Debug . assertDefined ( response . body ) ; // TODO: GH#18217
295
295
296
296
return {
Original file line number Diff line number Diff line change @@ -918,10 +918,13 @@ namespace ts.server.protocol {
918
918
body ?: FileSpanWithContext [ ] ;
919
919
}
920
920
921
- export interface DefinitionInfoAndBoundSpanReponse extends Response {
921
+ export interface DefinitionInfoAndBoundSpanResponse extends Response {
922
922
body ?: DefinitionInfoAndBoundSpan ;
923
923
}
924
924
925
+ /** @deprecated Use `DefinitionInfoAndBoundSpanResponse` instead. */
926
+ export type DefinitionInfoAndBoundSpanReponse = DefinitionInfoAndBoundSpanResponse ;
927
+
925
928
/**
926
929
* Definition response message. Gives text range for definition.
927
930
*/
Original file line number Diff line number Diff line change @@ -6628,9 +6628,11 @@ declare namespace ts.server.protocol {
6628
6628
interface DefinitionResponse extends Response {
6629
6629
body ?: FileSpanWithContext [ ] ;
6630
6630
}
6631
- interface DefinitionInfoAndBoundSpanReponse extends Response {
6631
+ interface DefinitionInfoAndBoundSpanResponse extends Response {
6632
6632
body ?: DefinitionInfoAndBoundSpan ;
6633
6633
}
6634
+ /** @deprecated Use `DefinitionInfoAndBoundSpanResponse` instead. */
6635
+ type DefinitionInfoAndBoundSpanReponse = DefinitionInfoAndBoundSpanResponse ;
6634
6636
/**
6635
6637
* Definition response message. Gives text range for definition.
6636
6638
*/
You can’t perform that action at this time.
0 commit comments