Type Alias ContextKeyValue
type Context Key Value =
| null
| undefined
| boolean
| number
| string
| (null | undefined | boolean | number | string)[]
| Record<
string,
null
| undefined
| boolean
| number
| string,
>