feat(html): add hotkeys (#1239)

This commit is contained in:
rahim
2026-04-07 01:08:16 -07:00
committed by GitHub
parent 627ea204fc
commit d9d893b726
19 changed files with 294 additions and 98 deletions
+10
View File
@@ -0,0 +1,10 @@
import { HotkeyElement } from '../../ui/hotkey/hotkey-element';
import { safeDefine } from '../safe-define';
safeDefine(HotkeyElement);
declare global {
interface HTMLElementTagNameMap {
[HotkeyElement.tagName]: HotkeyElement;
}
}