mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 17:22:03 +00:00
sdk: fix
This commit is contained in:
4
sdk/package-lock.json
generated
4
sdk/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@scrypted/sdk",
|
||||
"version": "0.0.182",
|
||||
"version": "0.0.183",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@scrypted/sdk",
|
||||
"version": "0.0.182",
|
||||
"version": "0.0.183",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@babel/preset-typescript": "^7.16.7",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@scrypted/sdk",
|
||||
"version": "0.0.182",
|
||||
"version": "0.0.183",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from __future__ import annotations
|
||||
from typing import Any, Set, TypedDict
|
||||
from typing import AbstractSet, Any, TypedDict
|
||||
from typing import Callable
|
||||
|
||||
SettingValue = str
|
||||
@@ -20,7 +20,7 @@ class Storage:
|
||||
def removeItem(self, key: str):
|
||||
pass
|
||||
|
||||
def getKeys(self) -> Set[str]:
|
||||
def getKeys(self) -> AbstractSet[str]:
|
||||
pass
|
||||
|
||||
def clear(self):
|
||||
|
||||
4
sdk/types/package-lock.json
generated
4
sdk/types/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@scrypted/types",
|
||||
"version": "0.0.24",
|
||||
"version": "0.0.25",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@scrypted/types",
|
||||
"version": "0.0.24",
|
||||
"version": "0.0.25",
|
||||
"license": "ISC",
|
||||
"devDependencies": {}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@scrypted/types",
|
||||
"version": "0.0.24",
|
||||
"version": "0.0.25",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"author": "",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from __future__ import annotations
|
||||
from typing import Any, Set, TypedDict
|
||||
from typing import AbstractSet, Any, TypedDict
|
||||
from typing import Callable
|
||||
|
||||
SettingValue = str
|
||||
@@ -20,7 +20,7 @@ class Storage:
|
||||
def removeItem(self, key: str):
|
||||
pass
|
||||
|
||||
def getKeys(self) -> Set[str]:
|
||||
def getKeys(self) -> AbstractSet[str]:
|
||||
pass
|
||||
|
||||
def clear(self):
|
||||
|
||||
Reference in New Issue
Block a user