From 6c510f8050c0f5c0e61ad605aab79749317af443 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Fri, 8 Mar 2013 04:21:17 -0800 Subject: [PATCH] tweenjs: converted inconsistent intentation to spaces (like easeljs). --- tweenjs/tweenjs.d.ts | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/tweenjs/tweenjs.d.ts b/tweenjs/tweenjs.d.ts index 82e9fd25c..7e424bbbc 100644 --- a/tweenjs/tweenjs.d.ts +++ b/tweenjs/tweenjs.d.ts @@ -12,10 +12,10 @@ module createjs { - export class TweenJS { - // properties - version: string; - buildDate: string; + export class TweenJS { + // properties + version: string; + buildDate: string; } @@ -137,24 +137,23 @@ module createjs { // events change: (event) => any; - // EventDispatcher mixins - addEventListener(type: string, listener: (eventObj: Object) => bool): Function; - addEventListener(type: string, listener: (eventObj: Object) => bool): Object; - removeEventListener(type: string, listener: (eventObj: Function) => bool): void; - removeEventListener(type: string, listener: (eventObj: Object) => bool): void; - removeAllEventListeners(type: string): void; - dispatchEvent(eventObj: string, target: Object): bool; - dispatchEvent(eventObj: Object, target: Object): bool; - hasEventListener(type: string): bool; + // EventDispatcher mixins + addEventListener(type: string, listener: (eventObj: Object) => bool): Function; + addEventListener(type: string, listener: (eventObj: Object) => bool): Object; + removeEventListener(type: string, listener: (eventObj: Function) => bool): void; + removeEventListener(type: string, listener: (eventObj: Object) => bool): void; + removeAllEventListeners(type: string): void; + dispatchEvent(eventObj: string, target: Object): bool; + dispatchEvent(eventObj: Object, target: Object): bool; + hasEventListener(type: string): bool; } - export class MotionGuidePlugin { - // properties - static priority: number; + export class MotionGuidePlugin { + // properties + static priority: number; - //methods - static install(): Object; - - } + //methods + static install(): Object; + } }