monaco-editor
Version:
A browser based code editor
16 lines • 633 B
JavaScript
/*---------------------------------------------------------------------------------------------
* 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