mirror of
https://github.com/koush/scrypted.git
synced 2026-03-01 16:52:56 +00:00
17 lines
243 B
Python
17 lines
243 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
|