Files
30-seconds-of-code/node_modules/shallowequal/index.js.flow
2019-08-20 15:52:05 +02:00

9 lines
185 B
Plaintext

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