UNPKG
jelenjs
Version:
latest (0.1.7)
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Core runtime library for JelenJS - an experimental UI framework with fine-grained reactivity
jelenjs
/
dist
/
jsx-runtime
/
index.d.ts
7 lines
(4 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
Component
}
from
'../types/src/jsx'
;
export
declare
const
jsx
:
(
type
:
string
|
Component
,
props
?:
any
) =>
any
;
export
declare
const
jsxs
:
(
type
:
string
|
Component
,
props
?:
any
) =>
any
;
export
declare
const
Fragment
:
(
props
: { children?:
any
}
) =>
DocumentFragment
;