Last updated 2 years ago
GenericObject<Value>
The type of generic object that takes generic type variable Value.
Value
type GenericObject<Value = any> = { [index: string]: Value; };
=
any
A generic type variable Value indicates the object property type, by default any.
object