Theia API Documentation v1.65.0
    Preparing search index...

    The type hierarchy params is an extension of the TextDocumentPositionParams with optional properties which can be used to eagerly resolve the item when requesting from the server.

    interface TypeHierarchyParams {
        direction?: TypeHierarchyDirection;
        position: Position;
        resolve?: number;
        textDocument: TextDocumentIdentifier;
    }

    Hierarchy

    • TextDocumentPositionParams
      • TypeHierarchyParams
    Index

    Properties

    The direction of the hierarchy levels to resolve.

    position: Position

    The position inside the text document.

    resolve?: number

    The hierarchy levels to resolve. 0 indicates no level. When not defined, it is treated as 0.

    textDocument: TextDocumentIdentifier

    The text document.