UNPKG
intro.js
Version:
latest (7.2.0)
next (8.2.0-beta.1)
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
/
util
/
createElement.d.ts
7 lines
(6 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Create a DOM element with various attributes */
export
default
function
_createElement<K
extends
keyof
HTMLElementTagNameMap
>(
tagName
: K,
attrs
?: { [
key
:
string
]:
string
|
Function
; }):
HTMLElementTagNameMap
[K];