Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ declare module TWEEN {
export function removeAll(): void;
export function add(tween:Tween): void;
export function remove(tween:Tween): void;
export function update(time:number): bool;
export function update(time:number): boolean;
export class Tween {
constructor(object?:any);
@@ -23,7 +23,7 @@ declare module TWEEN {
onStart(callback:Function): Tween;
onUpdate(callback:Function): Tween;
onComplete(callback:Function): Tween;
update(time:number): bool;
update(time:number): boolean;
}
export var Easing: TweenEasing;
export var Interpolation: TweenInterpolation;