UNPKG

monaco-editor

Version:
16 lines 721 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ export class InlineEdit { constructor(edit, commands, inlineCompletion) { this.edit = edit; this.commands = commands; this.inlineCompletion = inlineCompletion; } equals(other) { return this.edit.equals(other.edit) && this.inlineCompletion === other.inlineCompletion; } } //# sourceMappingURL=inlineEdit.js.map