@blockly/keyboard-navigation
Version:
A plugin for keyboard navigation.
22 lines • 508 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type { Navigation } from '../navigation';
/**
* Class for registering a shortcut for the exit action.
*/
export declare class ExitAction {
private navigation;
constructor(navigation: Navigation);
/**
* Adds the exit action shortcut to the registry.
*/
install(): void;
/**
* Removes the exit action shortcut.
*/
uninstall(): void;
}
//# sourceMappingURL=exit.d.ts.map