/*---------------------------------------------------------------------------------------------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*--------------------------------------------------------------------------------------------*/45import { Event } from '../common/event.js';67export interface IHistoryNavigationWidget {89readonly element: HTMLElement;1011showPreviousValue(): void;1213showNextValue(): void;1415readonly onDidFocus: Event<void>;1617readonly onDidBlur: Event<void>;1819}202122