UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

20 lines (19 loc) 700 B
import type { Transition as TransitionType } from '.'; export declare class Transition implements TransitionType { static AndroidTransitionType: { enter: string; exit: string; popEnter: string; popExit: string; }; id: number; private _duration; private _interpolator; constructor(duration?: number, curve?: any); getDuration(): number; setDuration(value: number): void; getCurve(): android.view.animation.Interpolator; animateIOSTransition(transitionContext: any, fromViewCtrl: any, toViewCtrl: any, operation: any): void; createAndroidAnimator(transitionType: string): android.animation.Animator; toString(): string; }