mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Add trailing comma to type
This commit is contained in:
parent
95d6a6f398
commit
adf09d2412
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ type GraphEdge = {
|
||||||
to: Archetype?,
|
to: Archetype?,
|
||||||
id: number,
|
id: number,
|
||||||
prev: GraphEdge?,
|
prev: GraphEdge?,
|
||||||
next: GraphEdge?
|
next: GraphEdge?,
|
||||||
}
|
}
|
||||||
|
|
||||||
type GraphEdges = Map<i53, GraphEdge>
|
type GraphEdges = Map<i53, GraphEdge>
|
||||||
|
|
Loading…
Reference in a new issue