mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 15:16:06 +00:00
9 lines
185 B
Plaintext
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;
|