UNPKG

@aximario/json-tree

Version:

把扁平化的数据转换成树形结构的JSON,把树形JSON扁平化

9 lines (8 loc) 366 B
import { ConstructOptions, DestructOptions } from './index.interface'; export declare function construct(nodes: any[], config?: ConstructOptions): any[]; export declare function destruct(forest: object[] | object, config?: DestructOptions): any[]; declare const _default: { construct: typeof construct; destruct: typeof destruct; }; export default _default;