Previously the `Phaser.Keyboard` module's `lastKey` property was of type
`string` in the TypeScript definition file, but it is actually a
`Phaser.Key` object, so `build/phaser.d.ts` has been updated to reflect
that.
This commit is contained in:
Brian Mock 2014-08-29 21:28:55 -07:00
parent da5a9482f6
commit fe94d7f002

2
build/phaser.d.ts vendored
View file

@ -2614,7 +2614,7 @@ declare module Phaser {
event: Object;
game: Phaser.Game;
lastChar: string;
lastKey: string;
lastKey: Phaser.Key;
onDownCallback: Function;
onPressCallback: Function;
onUpCallback: Function;