UNPKG

@blockly/keyboard-navigation

Version:
22 lines 508 B
/** * @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