1 | import { Animation, AnimationOptions } from '../animations/animation';
|
2 | import { Platform } from '../platform/platform';
|
3 | import { ViewController } from '../navigation/view-controller';
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare class Transition extends Animation {
|
20 | enteringView: ViewController;
|
21 | leavingView: ViewController;
|
22 | _trnsStart: Function;
|
23 | parent: Transition;
|
24 | trnsId: number;
|
25 | constructor(plt: Platform, enteringView: ViewController, leavingView: ViewController, opts: AnimationOptions);
|
26 | init(): void;
|
27 | registerStart(trnsStart: Function): void;
|
28 | start(): void;
|
29 | destroy(): void;
|
30 | }
|