UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

4 lines (3 loc) 218 B
import type { NestedArray } from './commonTypes'; export declare function flattenArray<T>(array: NestedArray<T>): T[]; export declare const has: <K extends string>(key: K, x: unknown) => x is { [key in K]: unknown; };