mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 09:12:03 +00:00
16 lines
242 B
Python
16 lines
242 B
Python
from __future__ import annotations
|
|
from typing import Any
|
|
from typing import Callable
|
|
|
|
SettingValue = str
|
|
EventListener = Callable[[Any, Any, Any], None]
|
|
|
|
class Console:
|
|
pass
|
|
|
|
class Storage:
|
|
pass
|
|
|
|
class MediaObject:
|
|
mimeType: str
|