Type alias map<R>

map<R>: nodes.obj<Record<string, R>, Record<string, R>>

A type alias for obj. It creates a "map" node schema, which is an object where a key can be any string and the value is of the same type.

Example:

s.map<nodes.con<number>>

Type Parameters