23328c5d343bc327012d1bee952def1223e3801b4c627972c83145a5e6cdc21bff1e1d4c7a7188188c71f70e3188b638b7bfb11b79e9b7be2f9f0d8cd5fbcc 762 B

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