Type Alias Json

Json:
    | string
    | number
    | boolean
    | null
    | { [key: string]: undefined
    | Json }
    | Json[]