mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
19 lines
549 B
Python
19 lines
549 B
Python
from typing import TypedDict
|
|
|
|
from config.config_manager import EjsControls
|
|
|
|
|
|
class ConfigResponse(TypedDict):
|
|
EXCLUDED_PLATFORMS: list[str]
|
|
EXCLUDED_SINGLE_EXT: list[str]
|
|
EXCLUDED_SINGLE_FILES: list[str]
|
|
EXCLUDED_MULTI_FILES: list[str]
|
|
EXCLUDED_MULTI_PARTS_EXT: list[str]
|
|
EXCLUDED_MULTI_PARTS_FILES: list[str]
|
|
PLATFORMS_BINDING: dict[str, str]
|
|
PLATFORMS_VERSIONS: dict[str, str]
|
|
EJS_DEBUG: bool
|
|
EJS_CACHE_LIMIT: int | None
|
|
EJS_SETTINGS: dict[str, dict[str, str]]
|
|
EJS_CONTROLS: dict[str, EjsControls]
|