forked from software-mansion/react-native-reanimated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-reanimated.d.ts
653 lines (597 loc) · 23.2 KB
/
react-native-reanimated.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
// Project: https://github.com/software-mansion/react-native-reanimated
// TypeScript Version: 2.8
declare module 'react-native-reanimated' {
import { ComponentClass, ReactNode, Component, RefObject } from 'react';
import {
ViewProps,
TextProps,
ImageProps,
ScrollViewProps,
StyleProp,
ViewStyle,
TextStyle,
ImageStyle,
TransformsStyle,
View as ReactNativeView,
Text as ReactNativeText,
Image as ReactNativeImage,
ScrollView as ReactNativeScrollView,
NativeScrollEvent,
NativeSyntheticEvent,
} from 'react-native';
import {
GestureHandlerGestureEventNativeEvent,
PanGestureHandlerGestureEvent,
PanGestureHandlerEventExtra,
} from 'react-native-gesture-handler';
namespace Animated {
type Nullable<T> = T | null | undefined;
class AnimatedNode<T> {
constructor(
nodeConfig: object,
inputNodes?: ReadonlyArray<AnimatedNode<any>>,
);
isNativelyInitialized(): boolean;
/**
* ' __value' is not available at runtime on AnimatedNode<T>. It is
* necessary to have some discriminating property on a type to know that
* an AnimatedNode<number> and AnimatedNode<string> are not compatible types.
*/
' __value': T;
}
class AnimatedClock extends AnimatedNode<number> {
constructor();
}
export enum Extrapolate {
EXTEND = 'extend',
CLAMP = 'clamp',
IDENTITY = 'identity',
}
interface InterpolationConfig {
inputRange: ReadonlyArray<Adaptable<number>>;
outputRange: ReadonlyArray<Adaptable<number>>;
extrapolate?: Extrapolate;
extrapolateLeft?: Extrapolate;
extrapolateRight?: Extrapolate;
}
type Value = string | number | boolean;
class AnimatedValue<T extends Value> extends AnimatedNode<T> {
constructor(value?: T);
setValue(value: Adaptable<T>): void;
interpolate(config: InterpolationConfig): AnimatedNode<number>;
}
type RawSharedValue = number | string | boolean | object;
type SharedValueType = RawSharedValue | RawSharedValue[];
export type SharedValue<T extends SharedValueType> = {
value: T;
};
export type Mapping = { [key: string]: Mapping } | Adaptable<any>;
export type Adaptable<T> =
| T
| AnimatedNode<T>
| ReadonlyArray<T | AnimatedNode<T> | ReadonlyArray<T | AnimatedNode<T>>>;
type BinaryOperator<T = number> = (
left: Adaptable<number>,
right: Adaptable<number>
) => AnimatedNode<T>;
type UnaryOperator = (value: Adaptable<number>) => AnimatedNode<number>;
type MultiOperator<T = number> = (
a: Adaptable<number>,
b: Adaptable<number>,
...others: Adaptable<number>[]
) => AnimatedNode<T>;
export interface AnimationState {
finished: AnimatedValue<number>;
position: AnimatedValue<number>;
time: AnimatedValue<number>;
}
export interface PhysicsAnimationState extends AnimationState {
velocity: AnimatedValue<number>;
}
export type DecayState = PhysicsAnimationState;
export interface DecayConfig {
deceleration: Adaptable<number>;
}
export interface WithDecayConfig {
deceleration?: number;
velocity?: number;
clamp?: [number, number];
}
export interface BackwardCompatibleWrapper {
start: (callback?: (data: { finished: boolean }) => any) => void;
stop: () => void;
}
export interface TimingState extends AnimationState {
frameTime: AnimatedValue<number>;
}
export type EasingFunction = (value: Adaptable<number>) => AnimatedNode<number>;
export interface TimingConfig {
toValue: Adaptable<number>;
duration: Adaptable<number>;
easing: EasingFunction;
}
export type SpringState = PhysicsAnimationState;
export interface SpringConfig {
damping: Adaptable<number>;
mass: Adaptable<number>;
stiffness: Adaptable<number>;
overshootClamping: Adaptable<number> | boolean;
restSpeedThreshold: Adaptable<number>;
restDisplacementThreshold: Adaptable<number>;
toValue: Adaptable<number>;
}
export interface WithSpringConfig extends Omit<SpringConfig, 'toValue'> {
velocity: number
}
interface SpringConfigWithOrigamiTensionAndFriction {
tension: Adaptable<number>;
mass: Adaptable<number>;
friction: Adaptable<number>;
overshootClamping: Adaptable<number> | boolean;
restSpeedThreshold: Adaptable<number>;
restDisplacementThreshold: Adaptable<number>;
toValue: Adaptable<number>;
}
interface SpringConfigWithBouncinessAndSpeed {
bounciness: Adaptable<number>;
mass: Adaptable<number>;
speed: Adaptable<number>;
overshootClamping: Adaptable<number> | boolean;
restSpeedThreshold: Adaptable<number>;
restDisplacementThreshold: Adaptable<number>;
toValue: Adaptable<number>;
}
type SpringUtils = {
makeDefaultConfig: () => SpringConfig;
makeConfigFromBouncinessAndSpeed: (prevConfig: SpringConfigWithBouncinessAndSpeed) => SpringConfig;
makeConfigFromOrigamiTensionAndFriction: (prevConfig: SpringConfigWithOrigamiTensionAndFriction) => SpringConfig
}
export const SpringUtils: SpringUtils
export type TransformStyleTypes = TransformsStyle['transform'] extends (readonly (infer T)[] | undefined) ? T : never
export type AdaptTransforms<T> = { [P in keyof T]: Adaptable<T[P] extends string ? number | string : T[P]> }
export type AnimatedTransform = (AdaptTransforms<TransformStyleTypes>)[]
export type AnimateStyle<S extends object> = {
[K in keyof S]: K extends 'transform' ? AnimatedTransform : (S[K] extends ReadonlyArray<any>
? ReadonlyArray<AnimateStyle<S[K][0]>>
: S[K] extends object
? AnimateStyle<S[K]>
:
| S[K]
| AnimatedNode<
// allow `number` where `string` normally is to support colors
S[K] extends (string | undefined) ? S[K] | number : S[K]
>)
};
export type AnimateProps<
S extends object,
P extends {
style?: StyleProp<S>;
}
> = {
[K in keyof P]: K extends 'style'
? StyleProp<AnimateStyle<S>>
: P[K] | AnimatedNode<P[K]>
};
type CodeProps = {
exec?: AnimatedNode<number>
children?: () => AnimatedNode<number>
};
// components
export class View extends Component<AnimateProps<ViewStyle, ViewProps>> {
getNode(): ReactNativeView;
}
export class Text extends Component<AnimateProps<TextStyle, TextProps>> {
getNode(): ReactNativeText;
}
export class Image extends Component<
AnimateProps<ImageStyle, ImageProps>
> {
getNode(): ReactNativeImage;
}
export class ScrollView extends Component<
AnimateProps<ViewStyle, ScrollViewProps>
> {
getNode(): ReactNativeScrollView;
}
export class Code extends Component<CodeProps> {}
export function createAnimatedComponent(component: any): any;
// classes
export {
AnimatedClock as Clock,
AnimatedNode as Node,
AnimatedValue as Value,
};
// base operations
export const add: MultiOperator;
export const sub: MultiOperator;
export const multiply: MultiOperator;
export const divide: MultiOperator;
export const pow: MultiOperator;
export const modulo: MultiOperator;
export const sqrt: UnaryOperator;
export const log: UnaryOperator;
export const sin: UnaryOperator;
export const cos: UnaryOperator;
export const tan: UnaryOperator;
export const acos: UnaryOperator;
export const asin: UnaryOperator;
export const atan: UnaryOperator;
export const exp: UnaryOperator;
export const round: UnaryOperator;
export const floor: UnaryOperator;
export const ceil: UnaryOperator;
export const lessThan: BinaryOperator<0 | 1>;
export const eq: BinaryOperator<0 | 1>;
export const greaterThan: BinaryOperator<0 | 1>;
export const lessOrEq: BinaryOperator<0 | 1>;
export const greaterOrEq: BinaryOperator<0 | 1>;
export const neq: BinaryOperator<0 | 1>;
export const and: MultiOperator<0 | 1>;
export const or: MultiOperator<0 | 1>;
export function proc<P1>(
cb: (p1: P1) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2>(
cb: (p1: P1, p2: P2) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3>(
cb: (p1: P1, p2: P2, p3: P3) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5, P6>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5, P6, P7>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5, P6, P7, P8>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5, P6, P7, P8, P9>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9) => AnimatedNode<number>
): typeof cb;
export function proc<P1, P2, P3, P4, P5, P6, P7, P8, P9, P10>(
cb: (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10) => AnimatedNode<number>
): typeof cb;
export function proc(
cb: (...params: Adaptable<number>[]) => AnimatedNode<number>
): typeof cb;
export function defined(value: Adaptable<any>): AnimatedNode<0 | 1>;
export function not(value: Adaptable<any>): AnimatedNode<0 | 1>;
export function set<T extends Value>(
valueToBeUpdated: AnimatedValue<T>,
sourceNode: Adaptable<T>,
): AnimatedNode<T>;
export function concat(
...args: Array<Adaptable<string> | Adaptable<number>>,
): AnimatedNode<string>;
export function cond<T1 extends Value = number, T2 extends Value = number>(
conditionNode: Adaptable<number>,
ifNode: Adaptable<T1>,
elseNode?: Adaptable<T2>,
): AnimatedNode<T1 | T2>;
export function block<T1 extends Value = number, T2 extends Value = any>(
items: ReadonlyArray<Adaptable<T2>>,
): AnimatedNode<T1>;
export function call<T>(
args: ReadonlyArray<T | AnimatedNode<T>>,
callback: (args: ReadonlyArray<T>) => void,
): AnimatedNode<0>;
export function debug<T>(
message: string,
value: AnimatedNode<T>,
): AnimatedNode<T>;
export function onChange(
value: Adaptable<number>,
action: Adaptable<number>,
): AnimatedNode<number>;
export function startClock(clock: AnimatedClock): AnimatedNode<0>;
export function stopClock(clock: AnimatedClock): AnimatedNode<0>;
export function clockRunning(clock: AnimatedClock): AnimatedNode<0 | 1>;
// the return type for `event` is a lie, but it's the same lie that
// react-native makes within Animated
type EventArgFunc<T> = (arg: T) => AnimatedNode<number>;
type EventMapping<T> = T extends object ? { [K in keyof T]?: EventMapping<T[K]> | EventArgFunc<T[K]> } : Adaptable<T> | EventArgFunc<T>;
type EventMappingArray<T> = T extends Array<any> ? { [I in keyof T]: EventMapping<T[I]> } : [EventMapping<T>]
export function event<T>(
argMapping: T extends never ? ReadonlyArray<Mapping> : Readonly<EventMappingArray<T>>,
config?: {},
): (...args: any[]) => void;
// derived operations
export function abs(value: Adaptable<number>): AnimatedNode<number>;
export function acc(value: Adaptable<number>): AnimatedNode<number>;
export function color(
r: Adaptable<number>,
g: Adaptable<number>,
b: Adaptable<number>,
a?: Adaptable<number>,
): AnimatedNode<number>;
export function diff(value: Adaptable<number>): AnimatedNode<number>;
export function diffClamp(
value: Adaptable<number>,
minVal: Adaptable<number>,
maxVal: Adaptable<number>,
): AnimatedNode<number>;
export function interpolateNode(
value: Adaptable<number>,
config: InterpolationConfig,
): AnimatedNode<number>;
export function interpolateColors(
animationValue: Adaptable<number>,
{
inputRange,
outputColorRange
}: {
inputRange: ReadonlyArray<Adaptable<number>>;
outputColorRange: (string | number)[];
}
): AnimatedNode<number>;
export const max: BinaryOperator;
export const min: BinaryOperator;
// reanimated2 derived operations
export function interpolate(
x: number,
input: Array<number>,
output: Array<number>,
type?: Extrapolate
): number;
// animations
export function decay(
clock: AnimatedClock,
state: DecayState,
config: DecayConfig,
): AnimatedNode<number>;
export function timing(
clock: AnimatedClock,
state: TimingState,
config: TimingConfig,
): AnimatedNode<number>;
export function spring(
clock: AnimatedClock,
state: SpringState,
config: SpringConfig,
): AnimatedNode<number>;
// backward compatible API
export function spring(
node: AnimatedNode<number>,
config: SpringConfig,
): BackwardCompatibleWrapper;
export function timing(
node: AnimatedNode<number>,
config: TimingConfig,
): BackwardCompatibleWrapper;
export function decay(
node: AnimatedNode<number>,
config: DecayConfig,
): BackwardCompatibleWrapper;
// reanimated2 animations
export function withTiming(
toValue: number,
userConfig?: Omit<TimingConfig, 'toValue'>,
callback?: (isCancelled: boolean) => void,
): number;
export function withSpring(
toValue: number,
userConfig?: WithSpringConfig,
callback?: (isCancelled: boolean) => void,
): number;
export function withDecay(
userConfig: WithDecayConfig,
callback?: (isCancelled: boolean) => void
): number;
export function cancelAnimation<T extends SharedValue<SharedValueType>>(
sharedValue: T
): void;
export function delay(
delayMS: number,
delayedAnimation: number,
): number;
export function repeat(
animation: number,
numberOfReps?: number,
reverse?: boolean
): number;
export function sequence(...animations: [number, ...number[]]): number;
// hooks
export function useCode(
exec: () => Nullable< AnimatedNode<number>[] | AnimatedNode<number> > | boolean,
deps: Array<any>,
): void
export function useValue<T extends Value>(
initialValue: T
): AnimatedValue<T>;
// reanimated2 functions
export function runOnUI<A extends any[], R>(fn: (...args: A) => R): (...args: Parameters<typeof fn>) => void;
export function processColor(color: number | string): number;
// reanimated2 hooks
export function useSharedValue<T>(
initialValue: T
): T extends SharedValueType ? SharedValue<T> : never;
export function useDerivedValue<T extends SharedValueType>(
processor: () => T
): SharedValue<T>;
export function useAnimatedStyle<T extends StyleProp<AnimateStyle<ViewStyle | ImageStyle | TextStyle>>>(
updater: () => T
): T;
export function useAnimatedProps<T extends {}>(
updater: () => T
): T;
export function useAnimatedGestureHandler<TContext extends Context>(
handlers: GestureHandlers<TContext>
): OnGestureEvent;
export function useAnimatedScrollHandler<TContext extends Context>(
handler: ScrollHandler<TContext>
): OnScroll;
export function useAnimatedScrollHandler<TContext extends Context>(
handlers: ScrollHandlers<TContext>
): OnScroll;
export function useAnimatedRef<T extends Component>(): RefObject<T>;
export function measure<T extends Component>(ref: RefObject<T>): {
width: number;
height: number;
x: number;
y: number;
pageX: number;
pageY: number;
};
export function scrollTo(ref: RefObject<ReactNativeScrollView | ScrollView>, x: number, y: number, animated: boolean): void;
// gesture-handler
type OnGestureEvent = (event: PanGestureHandlerGestureEvent) => void;
type Context = Record<string, unknown>;
type NativeEvent = GestureHandlerGestureEventNativeEvent & PanGestureHandlerEventExtra;
type Handler<TContext extends Context> = (event: NativeEvent, context: TContext) => void;
export interface GestureHandlers<TContext extends Context> {
onStart?: Handler<TContext>;
onActive?: Handler<TContext>;
onEnd?: Handler<TContext>;
onFail?: Handler<TContext>;
onCancel?: Handler<TContext>;
onFinish?: (event: NativeEvent, context: TContext, isCanceledOrFailed: boolean) => void;
}
// scroll view
type OnScroll = (event: NativeSyntheticEvent<NativeScrollEvent>) => void;
type ScrollHandler<TContext extends Context> = (event: NativeScrollEvent, context: TContext) => void;
export interface ScrollHandlers<TContext extends Context> {
onScroll?:ScrollHandler<TContext>;
onBeginDrag?:ScrollHandler<TContext>;
onEndDrag?: ScrollHandler<TContext>;
onMomentumBegin?: ScrollHandler<TContext>;
onMomentumEnd?: ScrollHandler<TContext>;
}
// configuration
export function addWhitelistedNativeProps(props: { [key: string]: true }): void;
export function addWhitelistedUIProps(props: { [key: string]: true }): void;
}
export default Animated;
interface EasingStatic {
linear: Animated.EasingFunction;
ease: Animated.EasingFunction;
quad: Animated.EasingFunction;
cubic: Animated.EasingFunction;
poly(n: Animated.Adaptable<number>): Animated.EasingFunction;
sin: Animated.EasingFunction;
circle: Animated.EasingFunction;
exp: Animated.EasingFunction;
elastic(bounciness?: Animated.Adaptable<number>): Animated.EasingFunction;
back(s?: Animated.Adaptable<number>): Animated.EasingFunction;
bounce: Animated.EasingFunction;
bezier(
x1: number,
y1: number,
x2: number,
y2: number,
): Animated.EasingFunction;
in(easing: Animated.EasingFunction): Animated.EasingFunction;
out(easing: Animated.EasingFunction): Animated.EasingFunction;
inOut(easing: Animated.EasingFunction): Animated.EasingFunction;
}
export const EasingNode: EasingStatic;
export interface TransitioningViewProps extends ViewProps {
transition: ReactNode;
}
export class TransitioningView extends Component<TransitioningViewProps> {
animateNextTransition(): void;
}
export class Transitioning extends Component {
static View: typeof TransitioningView;
}
export interface TransitionProps {
delayMs?: number;
durationMs?: number;
interpolation?: 'linear' | 'easeIn' | 'easeOut' | 'easeInOut';
propagation?: 'top' | 'bottom' | 'left' | 'right';
}
export interface TransitionInOutProps extends TransitionProps {
type?: 'fade' | 'scale' | 'slide-top' | 'slide-bottom' | 'slide-right' | 'slide-left';
}
export class Transition extends Component {
static In: ComponentClass<TransitionInOutProps>;
static Out: ComponentClass<TransitionInOutProps>;
static Change: ComponentClass<TransitionProps>;
static Together: ComponentClass<{}>;
static Sequence: ComponentClass<{}>;
}
export class Clock extends Animated.Clock {}
export class Value<T extends string | number | boolean> extends Animated.Value<T> {}
export class Node<T> extends Animated.Node<T> {}
export const add: typeof Animated.add
export const sub: typeof Animated.sub
export const multiply: typeof Animated.multiply
export const divide: typeof Animated.divide
export const pow: typeof Animated.pow
export const modulo: typeof Animated.modulo
export const sqrt: typeof Animated.sqrt
export const log: typeof Animated.log
export const sin: typeof Animated.sin
export const cos: typeof Animated.cos
export const exp: typeof Animated.exp
export const round: typeof Animated.round
export const lessThan: typeof Animated.lessThan
export const eq: typeof Animated.eq
export const greaterThan: typeof Animated.greaterThan
export const lessOrEq: typeof Animated.lessOrEq
export const greaterOrEq: typeof Animated.greaterOrEq
export const neq: typeof Animated.neq
export const and: typeof Animated.and
export const or: typeof Animated.or
export const defined: typeof Animated.defined
export const not: typeof Animated.not
export const tan: typeof Animated.tan
export const acos: typeof Animated.acos
export const asin: typeof Animated.asin
export const atan: typeof Animated.atan
export const proc: typeof Animated.proc
export const block: typeof Animated.block
export const concat: typeof Animated.concat
export const event: typeof Animated.event
export const call: typeof Animated.call
export const debug: typeof Animated.debug
export const clockRunning: typeof Animated.clockRunning
export const stopClock: typeof Animated.stopClock
export const startClock: typeof Animated.startClock
export const set: typeof Animated.set
export const cond: typeof Animated.cond
export const abs: typeof Animated.abs
export const acc: typeof Animated.acc
export const color: typeof Animated.color
export const interpolateColors: typeof Animated.interpolateColors
export const diff: typeof Animated.diff
export const diffClamp: typeof Animated.diffClamp
export const interpolateNode: typeof Animated.interpolateNode
export const Extrapolate: typeof Animated.Extrapolate
export const max: typeof Animated.max
export const min: typeof Animated.min
export const onChange: typeof Animated.onChange
export const floor: typeof Animated.floor
export const ceil: typeof Animated.ceil
export const useCode: typeof Animated.useCode
export const decay: typeof Animated.decay
export const timing: typeof Animated.timing
export const spring: typeof Animated.spring
export const SpringUtils: typeof Animated.SpringUtils
export const runOnUI: typeof Animated.runOnUI
export const processColor: typeof Animated.processColor
export const useValue: typeof Animated.useValue
export const useSharedValue: typeof Animated.useSharedValue
export const useAnimatedStyle: typeof Animated.useAnimatedStyle
export const useAnimatedProps: typeof Animated.useAnimatedProps
export const useDerivedValue: typeof Animated.useDerivedValue
export const useAnimatedGestureHandler: typeof Animated.useAnimatedGestureHandler
export const useAnimatedScrollHandler: typeof Animated.useAnimatedScrollHandler
export const useAnimatedRef: typeof Animated.useAnimatedRef
export const measure: typeof Animated.measure
export const scrollTo: typeof Animated.scrollTo
export const withTiming: typeof Animated.withTiming
export const withSpring: typeof Animated.withSpring
export const withDecay: typeof Animated.withDecay
export const cancelAnimation: typeof Animated.cancelAnimation
export const delay: typeof Animated.delay
export const repeat: typeof Animated.repeat;
export const sequence: typeof Animated.sequence;
export const interpolate: typeof Animated.interpolate
}