UNPKG

msw

Version:

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

8 lines (6 loc) 240 B
/** * Deeply merges two given objects with the right one * having a priority during property assignment. */ declare function mergeRight(left: Record<string, any>, right: Record<string, any>): Record<string, any>; export { mergeRight };