@nativescript/core 9.0.0-next-10-09-2025-18367604937 → 9.0.0-next-10-29-2025-18915153717
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ui/animation/index.d.ts +14 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript/core",
|
|
3
|
-
"version": "9.0.0-next-10-
|
|
3
|
+
"version": "9.0.0-next-10-29-2025-18915153717",
|
|
4
4
|
"description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index",
|
package/ui/animation/index.d.ts
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
export type { Pair, Transformation, TransformationType, TransformationValue, TransformFunctionsInfo, Point3D, AnimationPromise, Cancelable } from './animation-types';
|
|
2
|
-
export { Animation, _resolveAnimationCurve } from './animation';
|
|
3
2
|
export { KeyframeAnimation, KeyframeAnimationInfo, KeyframeDeclaration, KeyframeInfo } from './keyframe-animation';
|
|
3
|
+
import type { AnimationDefinition, AnimationPromise } from './animation-types';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Defines a animation set.
|
|
7
|
+
*/
|
|
8
|
+
export class Animation {
|
|
9
|
+
constructor(animationDefinitions: Array<AnimationDefinition>, playSequentially?: boolean);
|
|
10
|
+
public play: (resetOnFinish?: boolean) => AnimationPromise;
|
|
11
|
+
public cancel: () => void;
|
|
12
|
+
public isPlaying: boolean;
|
|
13
|
+
public _resolveAnimationCurve(curve: any): any;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function _resolveAnimationCurve(curve: any): any;
|