securityos/node_modules/shallowequal/index.js.flow

9 lines
185 B
Plaintext
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
// @flow
declare module.exports: <T, U>(
objA?: ?T,
objB?: ?U,
compare?: ?(objValue: any, otherValue: any, key?: string) => boolean | void,
compareContext?: ?any
) => boolean;