UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

13 lines 447 B
import type { NonMutable } from './helpers'; export declare enum ValueProcessorTarget { CSS = "css", Default = "default" } export type ValueProcessorContext = { target: ValueProcessorTarget; }; export type ValueProcessor<V = unknown, R = V> = (value: NonMutable<V>, context?: ValueProcessorContext) => R | Record<string, R>; export type ConfigPropertyAlias<P extends object> = { as: keyof P; }; //# sourceMappingURL=config.d.ts.map