Type alias ParsedJson

ParsedJson: null | string | number | boolean | ParsedJson[] | {
    [key: string]: ParsedJson;
}

Generated using TypeDoc