Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/history.ts
3292 views
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
6
import { Event } from '../common/event.js';
7
8
export 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