UNPKG
@tntsuperman/rjs
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
simple, react, fast JavaScript framework
tntsuperman.github.io/Rjs-homepage/
TNTSuperMan/Rjs
@tntsuperman/rjs
/
dist
/
seg.d.ts
11 lines
(10 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
VNode
}
from
"./element"
;
type
Content
=
string
|
VNode
<
ChildNode
>;
type
SEG
= { (...
fn
: [
() =>
void
]):
SEG
; (...
content
:
Content
[]):
VNode
<
HTMLElement
>; };
export
declare
const
seg
: { [
key
:
string
]:
SEG
; };
export
{};