UNPKG

react-native-integrate

Version:

Automate integration of additional code into React Native projects

7 lines (6 loc) 290 B
type TPrimitive = string | number | boolean | undefined | null; type TArray = any[]; type TAny = Record<string, any> | TPrimitive | TArray; export declare function satisfies(left: TAny, right: TAny): boolean; export declare function deepEquals(left: TAny, right: TAny): boolean; export {};