imajin/node_modules/shallowequal/index.js.flow
2026-01-10 04:52:11 -08:00

8 lines
185 B
Text

// @flow
declare module.exports: <T, U>(
objA?: ?T,
objB?: ?U,
compare?: ?(objValue: any, otherValue: any, key?: string) => boolean | void,
compareContext?: ?any
) => boolean;