UNPKG

monaco-editor-core

Version:
17 lines 723 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { QuickInputTreeRenderer } from './quickInputTreeRenderer.js'; /** * Delegate for QuickInputTree that provides height and template information. */ export class QuickInputTreeDelegate { getHeight(_element) { return 22; } getTemplateId(_element) { return QuickInputTreeRenderer.ID; } } //# sourceMappingURL=quickInputDelegate.js.map