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