UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

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