Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-amd/keyboard.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

17 lines
795 B
TypeScript

/**
* Returns true if the keycode is a directional keyboard key.
*/
export declare function isDirectionalKeyCode(which: number): boolean;
/**
* Adds a keycode to the list of keys that, when pressed, should cause the focus outlines to be visible.
* This can be used to add global shortcut keys that directionally move from section to section within
* an app or between focus trap zones.
*/
export declare function addDirectionalKeyCode(which: number): void;
/**
* Removes a keycode to the list of keys that, when pressed, should cause the focus outlines to be visible.
* This can be used to remove global shortcut keys that directionally move from section to section within
* an app or between focus trap zones.
*/
export declare function removeDirectionalKeyCode(which: number): void;