mirror of
https://github.com/rommapp/romm.git
synced 2026-07-01 08:16:21 +00:00
Included upgrades: * Python: v3.12 * Alpine: v3.20 (which uses Python 3.12) * nginx: v1.27.1
11 lines
164 B
Python
11 lines
164 B
Python
from typing import TypedDict
|
|
|
|
|
|
class StatsReturn(TypedDict):
|
|
PLATFORMS: int
|
|
ROMS: int
|
|
SAVES: int
|
|
STATES: int
|
|
SCREENSHOTS: int
|
|
FILESIZE: int
|