Files
scrypted/sdk/scrypted_python/scrypted_sdk/other.py
Koushik Dutta 590143bcd6 sdk: fix
2022-03-27 13:28:41 -07:00

36 lines
569 B
Python

from __future__ import annotations
from typing import AbstractSet, Any, TypedDict
from typing import Callable
SettingValue = str
EventListener = Callable[[Any, Any, Any], None]
class Console:
pass
class Storage:
def getItem(self, key: str) -> str:
pass
def setItem(self, key: str, value: str):
pass
def removeItem(self, key: str):
pass
def getKeys(self) -> AbstractSet[str]:
pass
def clear(self):
pass
class MediaObject:
mimeType: str
class RTCSessionDescriptionInit(TypedDict):
pass