Type Alias JSONSerializable

JSONSerializable:
    | string
    | number
    | boolean
    | null
    | JSONRecord
    | JSONSerializable[]

A type union of all basic JSON-compatible types.