UNPKG

monaco-editor

Version:
16 lines 633 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /** * Represents a column range in a single line. */ export class RangeSingleLine { constructor( /** 1-based */ lineNumber, columnRange) { this.lineNumber = lineNumber; this.columnRange = columnRange; } } //# sourceMappingURL=rangeSingleLine.js.map