mirror of
https://github.com/rommapp/romm.git
synced 2026-07-01 08:16:21 +00:00
11 lines
176 B
Python
11 lines
176 B
Python
from typing import TypedDict
|
|
|
|
|
|
class StatsReturn(TypedDict):
|
|
PLATFORMS: int
|
|
ROMS: int
|
|
SAVES: int
|
|
STATES: int
|
|
SCREENSHOTS: int
|
|
TOTAL_FILESIZE_BYTES: int
|