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?, to: Archetype?,
id: number, id: number,
prev: GraphEdge?, prev: GraphEdge?,
next: GraphEdge? next: GraphEdge?,
} }
type GraphEdges = Map<i53, GraphEdge> type GraphEdges = Map<i53, GraphEdge>