| 34 | * re-read of the handler's literal return; see the per-type docstrings. |
| 35 | */ |
| 36 | export interface CommandResultMap { |
| 37 | press: PressCommandResult; |
| 38 | fill: FillCommandResult; |
| 39 | longpress: LongPressCommandResult; |
| 40 | boot: BootCommandResult; |
| 41 | shutdown: ShutdownCommandResult; |
| 42 | viewport: ViewportCommandResult; |
| 43 | home: HomeCommandResult; |
| 44 | back: BackCommandResult; |
| 45 | rotate: RotateCommandResult; |
| 46 | 'app-switcher': AppSwitcherCommandResult; |
| 47 | clipboard: ClipboardCommandResult; |
| 48 | appstate: AppStateCommandResult; |
| 49 | keyboard: KeyboardCommandResult; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * The typed result for a command named `N`. Seeded commands resolve to their |
nothing calls this directly
no outgoing calls
no test coverage detected