UNPKG
vertecs
Version:
latest (2.2.2)
2.2.2
2.2.1
2.1.1
2.1.0
2.0.1
1.0.0
A typescript entity-component-system framework
vertecs
/
src
/
io
/
SerializedComponent.ts
11 lines
(9 loc)
•
188 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * The json representation of a serialized component */
interface
SerializedComponent
<
T
> { id?:
string
; data: T; className:
string
; } export
default
SerializedComponent;