vue-phaserjs 1.37.0 → 1.38.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { default as Zone } from './Zone.vue';
2
- import { default as TileSprite } from './TileSprite.vue';
3
2
  import { default as Tilemap } from './Tilemap.vue';
3
+ import { default as TileSprite } from './TileSprite.vue';
4
4
  import { default as Text } from './Text.vue';
5
5
  import { default as Sprite } from './Sprite.vue';
6
6
  import { default as Scene } from './Scene.vue';
@@ -11,4 +11,4 @@ import { default as Image } from './Image.vue';
11
11
  import { default as Game } from './Game.vue';
12
12
  import { default as Container } from './Container.vue';
13
13
  import { default as Circle } from './Circle.vue';
14
- export { Zone, TileSprite, Tilemap, Text, Sprite, Scene, Rectangle, PathFollower, Nineslice, Image, Game, Container, Circle, };
14
+ export { Zone, Tilemap, TileSprite, Text, Sprite, Scene, Rectangle, PathFollower, Nineslice, Image, Game, Container, Circle, };
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onCreate: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onCreate: (...args: HookArgs) => void;
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onInit: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onInit: (...args: HookArgs) => void;
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onNextTick: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onNextTick: (...args: HookArgs) => void;
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onPreload: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onPreload: (...args: HookArgs) => void;
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onShutdown: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onShutdown: (...args: HookArgs) => void;
@@ -1,2 +1,2 @@
1
1
  import { HookArgs } from '../models/lifecycle/HookArgs';
2
- export declare const onUpdate: (listener: (scene: import('..').SceneWithPlugins) => void, sceneKey?: string | undefined) => void;
2
+ export declare const onUpdate: (...args: HookArgs) => void;