frontend/.pnpm-store/v3/files/e9/44ef8aea6312efdca45296aeba05f6bc89db78dfd3f5c02aa5003892a9c20989d79e00f1c14b0933793a7e42b1cedaa14aacb7edafd4461e5d599de0e97d2b

10 lines
434 B
Plaintext

// Type definitions for parse-json 4.0
// Project: https://github.com/sindresorhus/parse-json
// Definitions by: mrmlnc <https://github.com/mrmlnc>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function parseJson(input: string | null, filepath?: string): any;
declare function parseJson(input: string | null, reviver: (key: any, value: any) => any, filepath?: string): any;
export = parseJson;