source: trip-planner-front/node_modules/@types/parse-json/index.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 425 bytes
Line 
1// Type definitions for parse-json 4.0
2// Project: https://github.com/sindresorhus/parse-json
3// Definitions by: mrmlnc <https://github.com/mrmlnc>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function parseJson(input: string | null, filepath?: string): any;
7declare function parseJson(input: string | null, reviver: (key: any, value: any) => any, filepath?: string): any;
8
9export = parseJson;
Note: See TracBrowser for help on using the repository browser.