monaco-editor
Version:
A browser based code editor
17 lines (15 loc) • 632 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var EditContext;
(function (EditContext) {
/**
* Create an edit context.
*/
function create(window, options) {
return new window.EditContext(options);
}
EditContext.create = create;
})(EditContext || (EditContext = {}));
export { EditContext };