mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
Fix CachedImage interface definition
This commit is contained in:
parent
2796a9db48
commit
ab6feb3ebc
1 changed files with 6 additions and 6 deletions
12
typescript/phaser.comments.d.ts
vendored
12
typescript/phaser.comments.d.ts
vendored
|
@ -3425,12 +3425,12 @@ declare module Phaser {
|
|||
|
||||
interface CachedImage {
|
||||
|
||||
key: string,
|
||||
url: string,
|
||||
data: HTMLImageElement,
|
||||
base: PIXI.BaseTexture,
|
||||
frame: Phaser.Frame,
|
||||
frameData: Phaser.FrameData
|
||||
key: string;
|
||||
url: string;
|
||||
data: HTMLImageElement;
|
||||
base: PIXI.BaseTexture;
|
||||
frame: Phaser.Frame;
|
||||
frameData: Phaser.FrameData;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue