File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11import { AnimationKeyframe } from '@angular/core/src/animation/animation_keyframe' ;
22import { AnimationPlayer } from '@angular/core/src/animation/animation_player' ;
33import { AnimationStyles } from '@angular/core/src/animation/animation_styles' ;
4- import { AnimationDriver } from '@angular/core /src/animation /animation_driver' ;
4+ import { AnimationDriver } from '@angular/platform-browser /src/dom /animation_driver' ;
55import { NativeScriptAnimationPlayer } from './animation-player' ;
66import { View } from "ui/core/view" ;
77import styleProperty = require( 'ui/styling/style-property' ) ;
Original file line number Diff line number Diff line change @@ -63,6 +63,15 @@ export class NativeScriptAnimationPlayer implements AnimationPlayer {
6363 this . animation = KeyframeAnimation . keyframeAnimationFromInfo ( keyframeAnimationInfo , observable . ValueSource . VisualState ) ;
6464 }
6565
66+ init ( ) : void {
67+ throw new Error ( "Not implemented." ) ;
68+ }
69+
70+ hasStarted ( ) : boolean {
71+ throw new Error ( "Not implemented." ) ;
72+ }
73+
74+
6675 onDone ( fn : Function ) : void { this . _subscriptions . push ( fn ) ; }
6776
6877 private _onFinish ( ) {
You can’t perform that action at this time.
0 commit comments