@rbxts/easytween
Advanced tools
Comparing version 1.1.5 to 1.1.6
/// <reference types="@rbxts/compiler-types" /> | ||
/// <reference types="@rbxts/types" /> | ||
/// <reference types="@rbxts/types" /> | ||
/// <reference types="@rbxts/compiler-types" /> | ||
type callbackOnChange<T> = (value: T) => void; | ||
@@ -16,2 +17,6 @@ type callbackOnReached = () => void; | ||
export default class EasyTween<T> { | ||
/** | ||
* @hidden | ||
*/ | ||
static readonly tweens: Set<EasyTween<any>>; | ||
private goalValue; | ||
@@ -26,3 +31,2 @@ private value; | ||
private startValue; | ||
private maid; | ||
constructor(value: T & Animatable, tweenInfo: TweenInfo); | ||
@@ -36,4 +40,8 @@ Destroy(): void; | ||
ListenToReacheGoal(callback: callbackOnReached): Connection; | ||
/** | ||
* @hidden | ||
*/ | ||
Update(): void; | ||
private init; | ||
} | ||
export {}; |
{ | ||
"name": "@rbxts/easytween", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "out/init.lua", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13488
45