ReferenceKeyboardShortcutScope
Type Alias KeyboardShortcutScope
Type Alias
Type Signature
type KeyboardShortcutScope =
| { scope: "viewer" }
| {
interceptedActions: (
"SEARCH"
| "PRINT"
| "ZOOM"
| "UNDO"
| "REDO"
| "PAGINATION"
)[];
scope: "global";
}
| { scope: "viewer" }
| {
interceptedActions: (
"SEARCH"
| "PRINT"
| "ZOOM"
| "UNDO"
| "REDO"
| "PAGINATION"
)[];
scope: "global";
}
Discriminated union describing the SDK's keyboard-shortcut scope. See the
keyboardShortcutScopefield of Configuration for usage and examples.