UNPKG

@openfisca/json-model

Version:

Library to handle informations extracted in JSON or YAML format from OpenFisca parameters, variables, etc

7 lines (6 loc) 272 B
export type JsonValue = boolean | JsonValue[] | null | number | string | { [key: string]: JsonValue; }; export declare const jsonReplacer: (_key: number | string, value: JsonValue) => string | number | boolean | JsonValue[] | { [key: string]: JsonValue; } | null;