UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

13 lines 461 B
import type { AnyRecord, 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 AnyRecord> = { as: keyof P; }; //# sourceMappingURL=config.d.ts.map