| 8 | |
| 9 | // Interface for version history JSON |
| 10 | interface VersionHistoryEntry { |
| 11 | version: string; |
| 12 | date: string; |
| 13 | platforms: { |
| 14 | [platform: string]: string; // platform -> download URL |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | interface VersionHistory { |
| 19 | versions: VersionHistoryEntry[]; |
nothing calls this directly
no outgoing calls
no test coverage detected