-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
70 lines (55 loc) · 1.48 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* @typedef {import('./lib/components.js').Components<JsxElement, JsxElementClass, JsxIntrinsicElements>} Components
* @template JsxElement
* @template JsxElementClass
* @template JsxIntrinsicElements
*/
/**
* @typedef {import('./lib/components.js').ExtraProps} ExtraProps
*/
/**
* @typedef {import('./lib/index.js').CreateEvaluater} CreateEvaluater
*/
/**
* @typedef {import('./lib/index.js').ElementAttributeNameCase} ElementAttributeNameCase
*/
/**
* @typedef {import('./lib/index.js').EvaluateExpression} EvaluateExpression
*/
/**
* @typedef {import('./lib/index.js').EvaluateProgram} EvaluateProgram
*/
/**
* @typedef {import('./lib/index.js').Evaluater} Evaluater
*/
/**
* @typedef {import('./lib/index.js').Fragment} Fragment
*/
/**
* @typedef {import('./lib/index.js').Jsx<JsxElement>} Jsx
* @template JsxElement
*/
/**
* @typedef {import('./lib/index.js').JsxDev<JsxElement>} JsxDev
* @template JsxElement
*/
/**
* @typedef {import('./lib/index.js').Options<JsxElement, JsxElementClass, JsxIntrinsicElements>} Options
* @template JsxElement
* @template JsxElementClass
* @template JsxIntrinsicElements
*/
/**
* @typedef {import('./lib/index.js').Props<JsxElement>} Props
* @template JsxElement
*/
/**
* @typedef {import('./lib/index.js').Source} Source
*/
/**
* @typedef {import('./lib/index.js').Space} Space
*/
/**
* @typedef {import('./lib/index.js').StylePropertyNameCase} StylePropertyNameCase
*/
export {toJsxRuntime} from './lib/index.js'