1 | import type { MutableRefObject } from 'react';
|
2 | import type { StyleProps, AnimatedStyle } from './commonTypes';
|
3 | import type { Descriptor } from './hook/commonTypes';
|
4 | declare let updateProps: (viewDescriptors: ViewDescriptorsWrapper, updates: StyleProps | AnimatedStyle<any>, isAnimatedProps?: boolean) => void;
|
5 | export declare const updatePropsJestWrapper: (viewDescriptors: ViewDescriptorsWrapper, updates: AnimatedStyle<any>, animatedStyle: MutableRefObject<AnimatedStyle<any>>, adapters: ((updates: AnimatedStyle<any>) => void)[]) => void;
|
6 | export default updateProps;
|
7 | export interface UpdatePropsManager {
|
8 | update(viewDescriptors: ViewDescriptorsWrapper, updates: StyleProps | AnimatedStyle<any>): void;
|
9 | flush(): void;
|
10 | }
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | interface ViewDescriptorsWrapper {
|
16 | value: Readonly<Descriptor[]>;
|
17 | }
|
18 |
|
\ | No newline at end of file |