Type alias Json

Json: null | boolean | number | string | Json[] | {
    [prop: string]: Json;
}

Any JSON-compatible value.