mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02: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;
|