| 12345678910 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- import { registerEditorContribution } from '../../../browser/editorExtensions.js';
- import { HoverParticipantRegistry } from '../../hover/browser/hoverTypes.js';
- import { InlayHintsController } from './inlayHintsController.js';
- import { InlayHintsHover } from './inlayHintsHover.js';
- registerEditorContribution(InlayHintsController.ID, InlayHintsController);
- HoverParticipantRegistry.register(InlayHintsHover);
|