@@ -900,15 +900,15 @@ export interface DefinitionRequest extends FileLocationRequest {
900900}
901901
902902export interface DefinitionAndBoundSpanRequest extends FileLocationRequest {
903- readonly command : CommandTypes . DefinitionAndBoundSpan ;
903+ command : CommandTypes . DefinitionAndBoundSpan ;
904904}
905905
906906export interface FindSourceDefinitionRequest extends FileLocationRequest {
907- readonly command : CommandTypes . FindSourceDefinition ;
907+ command : CommandTypes . FindSourceDefinition ;
908908}
909909
910910export interface DefinitionAndBoundSpanResponse extends Response {
911- readonly body : DefinitionInfoAndBoundSpan ;
911+ body : DefinitionInfoAndBoundSpan ;
912912}
913913
914914/** @internal */
@@ -924,7 +924,7 @@ export interface EmitOutputRequestArgs extends FileRequestArgs {
924924}
925925/** @internal */
926926export interface EmitOutputResponse extends Response {
927- readonly body : EmitOutput | ts . EmitOutput ;
927+ body : EmitOutput | ts . EmitOutput ;
928928}
929929/** @internal */
930930export interface EmitOutput {
@@ -1061,18 +1061,18 @@ export interface BraceCompletionRequestArgs extends FileLocationRequestArgs {
10611061}
10621062
10631063export interface JsxClosingTagRequest extends FileLocationRequest {
1064- readonly command : CommandTypes . JsxClosingTag ;
1065- readonly arguments : JsxClosingTagRequestArgs ;
1064+ command : CommandTypes . JsxClosingTag ;
1065+ arguments : JsxClosingTagRequestArgs ;
10661066}
10671067
10681068export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs { }
10691069
10701070export interface JsxClosingTagResponse extends Response {
1071- readonly body : TextInsertion ;
1071+ body : TextInsertion ;
10721072}
10731073
10741074export interface LinkedEditingRangeRequest extends FileLocationRequest {
1075- readonly command : CommandTypes . LinkedEditingRange ;
1075+ command : CommandTypes . LinkedEditingRange ;
10761076}
10771077
10781078export interface LinkedEditingRangesBody {
@@ -1081,7 +1081,7 @@ export interface LinkedEditingRangesBody {
10811081}
10821082
10831083export interface LinkedEditingRangeResponse extends Response {
1084- readonly body : LinkedEditingRangesBody ;
1084+ body : LinkedEditingRangesBody ;
10851085}
10861086
10871087/**
@@ -1234,13 +1234,13 @@ export interface RenameRequest extends FileLocationRequest {
12341234
12351235/** @internal */
12361236export interface RenameFullRequest extends FileLocationRequest {
1237- readonly command : CommandTypes . RenameLocationsFull ;
1238- readonly arguments : RenameRequestArgs ;
1237+ command : CommandTypes . RenameLocationsFull ;
1238+ arguments : RenameRequestArgs ;
12391239}
12401240
12411241/** @internal */
12421242export interface RenameFullResponse extends Response {
1243- readonly body : readonly RenameLocation [ ] ;
1243+ body : readonly RenameLocation [ ] ;
12441244}
12451245
12461246/**
@@ -2637,8 +2637,8 @@ export interface LargeFileReferencedEventBody {
26372637
26382638export type CreateFileWatcherEventName = "createFileWatcher" ;
26392639export interface CreateFileWatcherEvent extends Event {
2640- readonly event : CreateFileWatcherEventName ;
2641- readonly body : CreateFileWatcherEventBody ;
2640+ event : CreateFileWatcherEventName ;
2641+ body : CreateFileWatcherEventBody ;
26422642}
26432643
26442644export interface CreateFileWatcherEventBody {
@@ -2648,8 +2648,8 @@ export interface CreateFileWatcherEventBody {
26482648
26492649export type CreateDirectoryWatcherEventName = "createDirectoryWatcher" ;
26502650export interface CreateDirectoryWatcherEvent extends Event {
2651- readonly event : CreateDirectoryWatcherEventName ;
2652- readonly body : CreateDirectoryWatcherEventBody ;
2651+ event : CreateDirectoryWatcherEventName ;
2652+ body : CreateDirectoryWatcherEventBody ;
26532653}
26542654
26552655export interface CreateDirectoryWatcherEventBody {
@@ -2661,8 +2661,8 @@ export interface CreateDirectoryWatcherEventBody {
26612661
26622662export type CloseFileWatcherEventName = "closeFileWatcher" ;
26632663export interface CloseFileWatcherEvent extends Event {
2664- readonly event : CloseFileWatcherEventName ;
2665- readonly body : CloseFileWatcherEventBody ;
2664+ event : CloseFileWatcherEventName ;
2665+ body : CloseFileWatcherEventBody ;
26662666}
26672667
26682668export interface CloseFileWatcherEventBody {
@@ -3050,23 +3050,23 @@ export interface PrepareCallHierarchyRequest extends FileLocationRequest {
30503050}
30513051
30523052export interface PrepareCallHierarchyResponse extends Response {
3053- readonly body : CallHierarchyItem | CallHierarchyItem [ ] ;
3053+ body : CallHierarchyItem | CallHierarchyItem [ ] ;
30543054}
30553055
30563056export interface ProvideCallHierarchyIncomingCallsRequest extends FileLocationRequest {
30573057 command : CommandTypes . ProvideCallHierarchyIncomingCalls ;
30583058}
30593059
30603060export interface ProvideCallHierarchyIncomingCallsResponse extends Response {
3061- readonly body : CallHierarchyIncomingCall [ ] ;
3061+ body : CallHierarchyIncomingCall [ ] ;
30623062}
30633063
30643064export interface ProvideCallHierarchyOutgoingCallsRequest extends FileLocationRequest {
30653065 command : CommandTypes . ProvideCallHierarchyOutgoingCalls ;
30663066}
30673067
30683068export interface ProvideCallHierarchyOutgoingCallsResponse extends Response {
3069- readonly body : CallHierarchyOutgoingCall [ ] ;
3069+ body : CallHierarchyOutgoingCall [ ] ;
30703070}
30713071
30723072export const enum IndentStyle {
0 commit comments