/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45/// <reference path="../../src/vs/monaco.d.ts" />6/* eslint-disable local/code-no-standalone-editor */78export * from '../../src/vs/editor/editor.main';9import './style.css';10import * as monaco from '../../src/vs/editor/editor.main';1112globalThis.monaco = monaco;13const root = document.getElementById('sampleContent');14if (root) {15const d = monaco.editor.createDiffEditor(root);1617d.setModel({18modified: monaco.editor.createModel(`hello world`),19original: monaco.editor.createModel(`hello monaco`),20});21}222324