@vnejs/plugins.compatibility.choose.interface.fastforward 0.1.1 → 0.1.2
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/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { VnePluginConstantsMapRegistry, VnePluginEventsMapRegistry, VnePluginParamsMapRegistry, VnePluginSettingsMapRegistry } from "@vnejs/shared";
|
|
2
2
|
import type { PluginName as ChoosePluginName, SubscribeEvents as ChooseSubscribeEvents } from "@vnejs/plugins.views.scenario.choose.contract";
|
|
3
3
|
import type { PluginName as InterfaceFastforwardPluginName, SubscribeEvents as InterfaceFastforwardSubscribeEvents } from "@vnejs/plugins.views.scenario.interface.fastforward.contract";
|
|
4
|
-
export type PluginEvents = VnePluginEventsMapRegistry & Record<ChoosePluginName,
|
|
4
|
+
export type PluginEvents = VnePluginEventsMapRegistry & Record<ChoosePluginName, ChooseSubscribeEvents> & Record<InterfaceFastforwardPluginName, InterfaceFastforwardSubscribeEvents>;
|
|
5
5
|
export type PluginConstants = VnePluginConstantsMapRegistry;
|
|
6
6
|
export type PluginSettings = VnePluginSettingsMapRegistry;
|
|
7
7
|
export type PluginParams = VnePluginParamsMapRegistry;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -6,8 +6,8 @@ import type {
|
|
|
6
6
|
} from "@vnejs/plugins.views.scenario.interface.fastforward.contract";
|
|
7
7
|
|
|
8
8
|
export type PluginEvents = VnePluginEventsMapRegistry &
|
|
9
|
-
Record<ChoosePluginName,
|
|
10
|
-
Record<InterfaceFastforwardPluginName,
|
|
9
|
+
Record<ChoosePluginName, ChooseSubscribeEvents> &
|
|
10
|
+
Record<InterfaceFastforwardPluginName, InterfaceFastforwardSubscribeEvents>;
|
|
11
11
|
|
|
12
12
|
export type PluginConstants = VnePluginConstantsMapRegistry;
|
|
13
13
|
|