StorageBase

This commit is contained in:
2022-05-26 18:49:49 -05:00
commit 94126fe5f9
12 changed files with 666 additions and 0 deletions

4
src/util.ts Normal file
View File

@@ -0,0 +1,4 @@
export type JSONDataTypes = string | number | boolean
export type JSONObject<Value = JSONDataTypes, Key extends string = string> = {
[key in Key]: Value
}