mirror of
https://github.com/rommapp/romm.git
synced 2026-02-19 07:50:57 +01: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
|