Type Alias JSONType

JSONType:
    | null
    | boolean
    | number
    | string
    | JSONType[]
    | { [prop: string]: undefined
    | JSONType }