mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Update phaser.d.ts
This commit is contained in:
parent
d54b135617
commit
8e1306b78d
1 changed files with 2 additions and 2 deletions
4
types/phaser.d.ts
vendored
4
types/phaser.d.ts
vendored
|
@ -77408,7 +77408,7 @@ declare namespace Phaser {
|
|||
grid?: number[];
|
||||
};
|
||||
|
||||
type TweenBuilderConfig = object & {
|
||||
type TweenBuilderConfig = {[key: string]: any} & {
|
||||
/**
|
||||
* The object, or an array of objects, to run the tween on.
|
||||
*/
|
||||
|
@ -77612,7 +77612,7 @@ declare namespace Phaser {
|
|||
|
||||
type TweenCallbackTypes = 'onActive' | 'onComplete' | 'onLoop' | 'onPause' | 'onRepeat' | 'onResume' | 'onStart' | 'onStop' | 'onUpdate' | 'onYoyo';
|
||||
|
||||
type TweenChainBuilderConfig = object & {
|
||||
type TweenChainBuilderConfig = {[key: string]: any} & {
|
||||
/**
|
||||
* The object, or an array of objects, to run the tween on.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue