UNPKG
app-walk
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.
app-walk
/
dist
/
handleAction.d.ts
5 lines
(4 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
import
{
NavigateFunction
}
from
"react-router"
;
import
{
TAction
,
TStepAction
}
from
"./dataTypes"
;
export
declare
function
handleUrlAction
(
step
:
TStepAction
,
navigate
:
NavigateFunction
):
Promise
<
void
>;
export
declare
function
handleUiAction
(
step
:
TAction
):
Promise
<
boolean
>;