This commit is contained in:
Koushik Dutta
2022-03-27 13:28:41 -07:00
parent be31c5b89d
commit 590143bcd6
6 changed files with 10 additions and 10 deletions

4
sdk/package-lock.json generated
View File

@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/sdk",
"version": "0.0.182",
"version": "0.0.183",
"description": "",
"main": "index.js",
"scripts": {

View File

@@ -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):

View File

@@ -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": {}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/types",
"version": "0.0.24",
"version": "0.0.25",
"description": "",
"main": "index.js",
"author": "",

View File

@@ -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):