Add trailing comma to type

This commit is contained in:
Ukendio 2024-11-22 23:07:58 +01:00
parent 95d6a6f398
commit adf09d2412

View file

@ -18,7 +18,7 @@ type GraphEdge = {
to: Archetype?,
id: number,
prev: GraphEdge?,
next: GraphEdge?
next: GraphEdge?,
}
type GraphEdges = Map<i53, GraphEdge>