vue-phaserjs 1.37.1 → 1.39.0

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,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;