1fbe300630fe1a5fe1f65aae75352a49689ab29c476ec6cd3c825fd983ee30ca5120c5553b0fa60fa4e2fa47b02db86050ed8459b13131020f72138c3986e0 671 B

12345678910111213
  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. export class CursorContext {
  6. constructor(model, viewModel, coordinatesConverter, cursorConfig) {
  7. this._cursorContextBrand = undefined;
  8. this.model = model;
  9. this.viewModel = viewModel;
  10. this.coordinatesConverter = coordinatesConverter;
  11. this.cursorConfig = cursorConfig;
  12. }
  13. }