File
Description
Service to assist showing custom help screen
Public
shortcuts$
|
Default value : this.keyboard.shortcuts$.pipe(
map(shortcuts =>
shortcuts
.filter(shortcut => Boolean(shortcut.label) && Boolean(shortcut.description))
.map(({ key, label, description }) => ({
key,
label,
description
}))
)
)
|
|
Observable to provide access to all registered shortcuts in the app.
|