Type Alias: ValueType ​
ts
type ValueType = null | string | number | boolean | object | DictionaryType | ValueType[];ValueType is a type that represents the possible values that can be stored in a key-value pair.
It can be null, string, number, boolean, object, DictionaryType, or an array of ValueType.
Example ​
js
await keyValues.set("createdAt", "2023-04-16");
await keyValues.set("levels", [1, 2, 3]);
await keyValues.set("family, [{ name: "John" }, { name: "Jane" }]);
await keyValues.get(); //get all
// Output:
{
	createdAt: "2023-04-16",
	levels: [1, 2, 3],
	family: [
		{ name: "John" },
		{ name: "Jane" }
	]
}