UNPKG

monaco-editor

Version:
15 lines 660 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ export var EditContext; (function (EditContext) { /** * Create an edit context. */ function create(window, options) { return new window.EditContext(options); } EditContext.create = create; })(EditContext || (EditContext = {})); //# sourceMappingURL=editContextFactory.js.map