1 | import type { ReactTestInstance } from 'react-test-renderer';
|
2 | import type { DefaultStyle } from './hook/commonTypes';
|
3 | declare global {
|
4 | namespace jest {
|
5 | interface Matchers<R> {
|
6 | toHaveAnimatedStyle(style: Record<string, unknown>[] | Record<string, unknown>, config?: {
|
7 | shouldMatchAllProps?: boolean;
|
8 | }): R;
|
9 | }
|
10 | }
|
11 | }
|
12 | export declare const withReanimatedTimer: (animationTest: () => void) => void;
|
13 | export declare const advanceAnimationByTime: (time?: number) => void;
|
14 | export declare const advanceAnimationByFrame: (count: number) => void;
|
15 | export declare const setUpTests: (userFramerateConfig?: {}) => void;
|
16 | export declare const getAnimatedStyle: (component: ReactTestInstance) => DefaultStyle;
|
17 |
|
\ | No newline at end of file |