amis-rpc-design/node_modules/shallowequal/index.js.flow

9 lines
185 B
Plaintext
Raw Normal View History

2023-10-07 19:42:30 +08:00
// @flow
declare module.exports: <T, U>(
objA?: ?T,
objB?: ?U,
compare?: ?(objValue: any, otherValue: any, key?: string) => boolean | void,
compareContext?: ?any
) => boolean;