UNPKG
purplejs
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A little bit of React
purplejs
/
src
/
interfaces
/
element-object.ts
7 lines
(6 loc)
•
195 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
Component
from
'../component/index'
export
default
interface
ElementObject
{
type
:
any
props
:
Object
| { [
key
:
string
]:
boolean
|
string
} |
null
children
?:
ElementObject
[] |
null
}