mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Sorry for the confusion between tween.js and tweenjs. TweenJS is a part of CreateJS, Tween.js is something different.
This commit is contained in:
Vendored
+2
-6
@@ -10,8 +10,7 @@ declare module TWEEN {
|
||||
export function add(tween:Tween): void;
|
||||
export function remove(tween:Tween): void;
|
||||
export function update(time:number): boolean;
|
||||
|
||||
// Class documentation : http://www.createjs.com/Docs/TweenJS/classes/Tween.html
|
||||
|
||||
export class Tween {
|
||||
constructor(object?:any);
|
||||
to(properties:any, duration:number): Tween;
|
||||
@@ -24,10 +23,7 @@ declare module TWEEN {
|
||||
onStart(callback:Function): Tween;
|
||||
onUpdate(callback:Function): Tween;
|
||||
onComplete(callback:Function): Tween;
|
||||
update(time: number): boolean;
|
||||
wait(duration: number): Tween;
|
||||
call(callback: Function, params?: any[], scope?: any): Tween;
|
||||
static get(target: any, props?: any, pluginData?: any, override?: boolean): Tween;
|
||||
update(time: number): boolean;
|
||||
}
|
||||
export var Easing: TweenEasing;
|
||||
export var Interpolation: TweenInterpolation;
|
||||
|
||||
Reference in New Issue
Block a user