Add initial keyboard shortcut support.

This commit is contained in:
Dermot Duffy
2024-06-05 21:44:17 -07:00
parent 904f6d8142
commit 7ab545738d
186 changed files with 9564 additions and 3658 deletions
+7 -2
View File
@@ -93,8 +93,13 @@ export interface CardHelpers {
export type PTZMovementType = 'relative' | 'continuous';
export interface PTZCapabilities {
panTilt?: PTZMovementType[];
zoom?: PTZMovementType[];
left?: PTZMovementType[];
right?: PTZMovementType[];
up?: PTZMovementType[];
down?: PTZMovementType[];
zoomIn?: PTZMovementType[];
zoomOut?: PTZMovementType[];
presets?: string[];
}