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
/
dataTypes
/
walkMeDataType.js
7 lines
(6 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
isUrlAction
(
step
) {
return
step.
actionType
===
"url"
&&
typeof
step.
urlString
===
"string"
; }
export
function
isUiAction
(
step
) {
return
(step.
actionType
!==
"url"
&&
Array
.
isArray
(step.
selectors
)); }