UNPKG

@jsonhero/parser

Version:

A parser that walks through a JSON file and for each value determines the path to it, the type and paths to any children. It also builds a model of the structure of the data.

6 lines (5 loc) 237 B
import { JSONValueType } from '@jsonhero/json-infer-types'; import { ParsedObject } from './structure'; export declare function parse(object: any): ParsedObject; export { ParsedObject } from './structure'; export { JSONValueType };