feat(overlay): discover unclaimed mpv key bindings (#246)

This commit is contained in:
2026-09-15 18:26:45 -07:00
committed by GitHub
parent e6dc9dfec5
commit 7c1eac03dc
21 changed files with 674 additions and 5 deletions
+5
View File
@@ -34,6 +34,11 @@ export interface SessionKeySpec {
modifiers: SessionKeyModifier[];
}
export interface MpvInputBindingsSnapshot {
keys: string[];
blockedKeys: SessionKeySpec[];
}
export interface SessionBindingWarning {
kind: 'unsupported' | 'conflict' | 'deprecated-config';
path: string;