Key value pair

interface Item<T> {
    value: undefined | T;
}

Type Parameters

  • T

Properties

Properties

value: undefined | T

Value

The value can be any object that can be serialized with v8. This means that not only simple data types (string, number) are possible, but also more complex types such as sets or maps. You can find a list of the supported data types here.