Skip to content

Commit

Permalink
fix: missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 15, 2020
1 parent 2f9c169 commit 0adb5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charting/animation/ChartAnimator.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import TWEEN from '@nativescript-community/tween';
const Easing = TWEEN.Easing;
type EasingFunction = (k: number) => number;
export type EasingFunction = (k: number) => number;
export { Easing };
/**
* Object responsible for all animations in the Chart. Animations require API level 11.
Expand Down

0 comments on commit 0adb5e0

Please sign in to comment.