1 | import type { Transition as TransitionType } from '.';
|
2 | export declare class Transition implements TransitionType {
|
3 | static AndroidTransitionType: {
|
4 | enter: string;
|
5 | exit: string;
|
6 | popEnter: string;
|
7 | popExit: string;
|
8 | };
|
9 | id: number;
|
10 | private _duration;
|
11 | private _interpolator;
|
12 | constructor(duration?: number, curve?: any);
|
13 | getDuration(): number;
|
14 | setDuration(value: number): void;
|
15 | getCurve(): android.view.animation.Interpolator;
|
16 | animateIOSTransition(transitionContext: any, fromViewCtrl: any, toViewCtrl: any, operation: any): void;
|
17 | createAndroidAnimator(transitionType: string): android.animation.Animator;
|
18 | toString(): string;
|
19 | }
|