File tree 1 file changed +2
-10
lines changed
1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -2431,7 +2431,7 @@ interface ServerCapabilities {
2431
2431
*
2432
2432
* @since 3.17.0
2433
2433
*/
2434
- typeHierarchyProvider? : TypeHierarchyOptions
2434
+ typeHierarchyProvider? : boolean | TypeHierarchyOptions
2435
2435
| TypeHierarchyRegistrationOptions ;
2436
2436
2437
2437
/**
@@ -8217,14 +8217,10 @@ interface TypeHierarchyClientCapabilities {
8217
8217
_ Server Capability_ :
8218
8218
8219
8219
* property name (optional): ` typeHierarchyProvider `
8220
- * property type: ` TypeHierarchyOptions | TypeHierarchyRegistrationOptions ` where ` TypeHierarchyOptions ` is defined as follows:
8220
+ * property type: ` boolean | TypeHierarchyOptions | TypeHierarchyRegistrationOptions` where ` TypeHierarchyOptions ` is defined as follows:
8221
8221
8222
8222
``` typescript
8223
8223
export interface TypeHierarchyOptions extends WorkDoneProgressOptions {
8224
- /**
8225
- * The server supports for providing an inheritance tree.
8226
- */
8227
- inheritanceTreeSupport? : boolean ;
8228
8224
}
8229
8225
```
8230
8226
@@ -8318,10 +8314,6 @@ _Request_:
8318
8314
``` typescript
8319
8315
export interface TypeHierarchySupertypesParams extends
8320
8316
WorkDoneProgressParams , PartialResultParams {
8321
- /**
8322
- * If this is set to `true`, The request only asks for super class.
8323
- */
8324
- classOnly? : boolean ;
8325
8317
item: TypeHierarchyItem ;
8326
8318
}
8327
8319
```
You can’t perform that action at this time.
0 commit comments