UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

8 lines (6 loc) 228 B
/** * Parses a given value into a JSON. * Does not throw an exception on an invalid JSON string. */ declare function jsonParse<ValueType extends Record<string, any>>(value: any): ValueType | undefined; export { jsonParse };