Update phaser.d.ts

This commit is contained in:
Richard Davey 2023-04-04 18:43:21 +01:00
parent d54b135617
commit 8e1306b78d

4
types/phaser.d.ts vendored
View file

@ -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.
*/