easeljs: fixed signature of static extractFrame() on SpriteSheetUtils

This commit is contained in:
Josh Tynjala
2013-03-08 04:39:01 -08:00
parent 5ab7535590
commit 6acbdec7da
+2 -1
View File
@@ -567,7 +567,8 @@ module createjs {
export class SpriteSheetUtils {
static addFlippedFrames(spriteSheet: SpriteSheet, horizontal?: bool, vertical?: bool, both?: bool): void;
static extractFrame(spriteSheet: HTMLImageElement, frame: number): HTMLImageElement;
static extractFrame(spriteSheet: SpriteSheet, frame: number): HTMLImageElement;
static extractFrame(spriteSheet: SpriteSheet, animationName: string): HTMLImageElement;
static flip(spriteSheet: HTMLImageElement, flipData: Object): void;
static mergeAlpha(rgbImage: HTMLImageElement, alphaImage: HTMLImageElement, canvas?: HTMLCanvasElement): HTMLCanvasElement;
}