UNPKG

monaco-editor

Version:
24 lines (22 loc) 694 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ class EditorTheme { get type() { return this._theme.type; } get value() { return this._theme; } constructor(theme) { this._theme = theme; } update(theme) { this._theme = theme; } getColor(color) { return this._theme.getColor(color); } } export { EditorTheme };