1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6import { Event } from '../common/event.js'; 7 8export interface IHistoryNavigationWidget { 9 10 readonly element: HTMLElement; 11 12 showPreviousValue(): void; 13 14 showNextValue(): void; 15 16 onDidFocus: Event<void>; 17 18 onDidBlur: Event<void>; 19 20} 21 22