@vnejs/plugins.scenario.pause.contract 0.0.2 → 0.0.3

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.
package/dist/index.d.ts CHANGED
@@ -8,12 +8,6 @@ export type { SubscribeEvents } from "./events.js";
8
8
  export type PauseStartPayload = {
9
9
  time?: number;
10
10
  };
11
- declare module "@vnejs/module" {
12
- interface ModuleShared {
13
- /** Set by @vnejs/plugins.scenario.fastforward when installed. */
14
- isFastforwardOn?: boolean;
15
- }
16
- }
17
11
  declare module "@vnejs/shared" {
18
12
  interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
19
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/plugins.scenario.pause.contract",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Contracts for @vnejs/plugins.scenario.pause",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -13,13 +13,6 @@ export type PauseStartPayload = {
13
13
  time?: number;
14
14
  };
15
15
 
16
- declare module "@vnejs/module" {
17
- interface ModuleShared {
18
- /** Set by @vnejs/plugins.scenario.fastforward when installed. */
19
- isFastforwardOn?: boolean;
20
- }
21
- }
22
-
23
16
  declare module "@vnejs/shared" {
24
17
  interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}
25
18
  }