@blockly/keyboard-navigation
Version:
A plugin for keyboard navigation.
21 lines • 493 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Class for registering a shortcut for undo/redo actions.
*/
export declare class UndoRedoAction {
private originalUndo?;
private originalRedo?;
/**
* Patches the existing undo/redo shortcuts in the registry.
*/
install(): void;
/**
* Reverts the patched undo/redo shortcuts in the registry.
*/
uninstall(): void;
}
//# sourceMappingURL=undo_redo.d.ts.map