Interface HoverMiddleware

interface HoverMiddleware {
    provideHover?: (
        this: void,
        document: TextDocument,
        position: Position,
        token: CancellationToken,
        next: ProvideHoverSignature,
    ) => ProviderResult<Hover>;
}

Properties

Properties

provideHover?: (
    this: void,
    document: TextDocument,
    position: Position,
    token: CancellationToken,
    next: ProvideHoverSignature,
) => ProviderResult<Hover>