tweenjs: fixed signature of static get() on Tween

This commit is contained in:
Josh Tynjala
2013-03-08 04:27:51 -08:00
parent 6c510f8050
commit 5ab7535590
+1 -1
View File
@@ -120,7 +120,7 @@ module createjs {
// methods
call(callback: (tweenObject: Tween) => any, params?: any[], scope?: Object); // when 'params' isn't given, the callback receives a tweenObject
call(callback: (...params: any[]) => any, params?: any[], scope?: Object); // otherwise, it receives the params only
static get(target, props: Object): Tween;
static get(target, props?: Object, pluginData?: Object, override?: bool): Tween;
static hasActiveTweens(target? ): void;
static installPlugin(plugin: Object, properties: Object): void;
pause(tween: Tween): void;