UNPKG
intro.js
Version:
latest (8.3.2)
next (8.2.0-beta.1)
8.3.2
8.3.1
8.3.0
8.2.0-beta.1
8.1.0-beta.1
8.0.0-beta.1
7.2.0
7.1.0
7.0.1
7.0.0
6.0.0
5.1.0
5.0.0
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
4.0.0
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.1
3.0.0-beta.1
2.9.3
2.9.2
2.9.1
2.9.0
2.8.0-alpha.1
2.7.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.1.1
1.1.0
0.9.0
0.6.0
User Onboarding and Product Walkthrough Library
introjs.com
usablica/intro.js
intro.js
/
src
/
core
/
fetchIntroSteps.d.ts
9 lines
(8 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
IntroJs
}
from
"../intro"
;
import
{
IntroStep
}
from
"./steps"
;
/** * Finds all Intro steps from the data-* attributes and the options.steps array * *
@api
private
*/
export
default
function
fetchIntroSteps
(
intro: IntroJs, targetElm: HTMLElement
):
IntroStep
[];