@@ -2,22 +2,21 @@ declare namespace ts.server {
22 export type ActionSet = "action::set" ;
33 export type ActionInvalidate = "action::invalidate" ;
44 export type ActionPackageInstalled = "action::packageInstalled" ;
5- export type ActionValueInspected = "action::valueInspected" ;
65 export type EventTypesRegistry = "event::typesRegistry" ;
76 export type EventBeginInstallTypes = "event::beginInstallTypes" ;
87 export type EventEndInstallTypes = "event::endInstallTypes" ;
98 export type EventInitializationFailed = "event::initializationFailed" ;
109
1110 export interface TypingInstallerResponse {
12- readonly kind : ActionSet | ActionInvalidate | EventTypesRegistry | ActionPackageInstalled | ActionValueInspected | EventBeginInstallTypes | EventEndInstallTypes | EventInitializationFailed ;
11+ readonly kind : ActionSet | ActionInvalidate | EventTypesRegistry | ActionPackageInstalled | EventBeginInstallTypes | EventEndInstallTypes | EventInitializationFailed ;
1312 }
1413
1514 export interface TypingInstallerRequestWithProjectName {
1615 readonly projectName : string ;
1716 }
1817
1918 /* @internal */
20- export type TypingInstallerRequestUnion = DiscoverTypings | CloseProject | TypesRegistryRequest | InstallPackageRequest | InspectValueRequest ;
19+ export type TypingInstallerRequestUnion = DiscoverTypings | CloseProject | TypesRegistryRequest | InstallPackageRequest ;
2120
2221 export interface DiscoverTypings extends TypingInstallerRequestWithProjectName {
2322 readonly fileNames : string [ ] ;
@@ -44,12 +43,6 @@ declare namespace ts.server {
4443 readonly projectRootPath : Path ;
4544 }
4645
47- /* @internal */
48- export interface InspectValueRequest {
49- readonly kind : "inspectValue" ;
50- readonly options : InspectValueOptions ;
51- }
52-
5346 /* @internal */
5447 export interface TypesRegistryResponse extends TypingInstallerResponse {
5548 readonly kind : EventTypesRegistry ;
@@ -62,12 +55,6 @@ declare namespace ts.server {
6255 readonly message : string ;
6356 }
6457
65- /* @internal */
66- export interface InspectValueResponse {
67- readonly kind : ActionValueInspected ;
68- readonly result : ValueInfo ;
69- }
70-
7158 export interface InitializationFailedResponse extends TypingInstallerResponse {
7259 readonly kind : EventInitializationFailed ;
7360 readonly message : string ;
@@ -115,5 +102,5 @@ declare namespace ts.server {
115102 }
116103
117104 /* @internal */
118- export type TypingInstallerResponseUnion = SetTypings | InvalidateCachedTypings | TypesRegistryResponse | PackageInstalledResponse | InspectValueResponse | InstallTypes | InitializationFailedResponse ;
105+ export type TypingInstallerResponseUnion = SetTypings | InvalidateCachedTypings | TypesRegistryResponse | PackageInstalledResponse | InstallTypes | InitializationFailedResponse ;
119106}
0 commit comments