-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
56 lines (48 loc) · 1.84 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
/**
* @typedef {unknown} Components
* @typedef {unknown} ExtraProps
* @typedef {import('./lib/index.js').ElementAttributeNameCase} ElementAttributeNameCase
* @typedef {import('./lib/index.js').EvaluateProgram} EvaluateProgram
* @typedef {unknown} Fragment
* @typedef {import('./lib/index.js').Source} Source
* @typedef {import('./lib/index.js').Space} Space
* @typedef {import('./lib/index.js').StylePropertyNameCase} StylePropertyNameCase
*/
/**
* @template [JsxElementType=any]
* @template [JsxProps=any]
* @template [JsxKey=any]
* @template [JsxElement=any]
* @typedef {import('./lib/index.js').Jsx} Jsx
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').CreateEvaluater<JsxFunction>} CreateEvaluater
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').EvaluateExpression<JsxFunction>} EvaluateExpression
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').Evaluater<JsxFunction>} Evaluater
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').JsxDev<JsxFunction>} JsxDev
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').Options<JsxFunction>} Options
*/
/**
* @template {Jsx} [JsxFunction=Jsx]
* The type of the `jsx` function impoted from `${jsxImportSource}/jsx-runtime`.
* @typedef {import('./lib/index.js').Props<JsxFunction>} Props
*/
export {toJsxRuntime} from './lib/index.js'