@d-najd/universal-media-tracker-sdk 0.1.0 → 0.1.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.
- package/dist/types/handler/plugin/factory/createPluginFactoryHandler.d.ts +3 -2
- package/dist/types/handler/plugin/factory/pluginFactoryHandlerArgs.d.ts +1 -0
- package/dist/types/handler/plugin/factory/pluginFactoryHandlerArgs.js +1 -1
- package/dist/types/handler/plugin/source/createPluginSourceHandler.d.ts +1 -0
- package/dist/types/handler/plugin/source/pluginSourceHandlerArgs.d.ts +1 -0
- package/dist/types/handler/plugin/source/pluginSourceHandlerArgs.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import BaseHandler from "../../base/baseHandler";
|
|
2
|
-
import
|
|
3
|
-
|
|
2
|
+
import PluginFactoryHandlerArgs from "./pluginFactoryHandlerArgs";
|
|
3
|
+
import PluginFactoryHandlerResponse from "./pluginFactoryHandlerResponse";
|
|
4
|
+
type CreatePluginFactoryHandler = BaseHandler<PluginFactoryHandlerArgs, PluginFactoryHandlerResponse> & {};
|
|
4
5
|
export default CreatePluginFactoryHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import PluginSourceHandlerResponse from "./pluginSourceHandlerResponse";
|
|
2
2
|
import BaseHandler from "../../base/baseHandler";
|
|
3
|
+
import PluginSourceHandlerArgs from "./pluginSourceHandlerArgs";
|
|
3
4
|
type CreatePluginSourceHandler = BaseHandler<PluginSourceHandlerArgs, PluginSourceHandlerResponse> & {};
|
|
4
5
|
export default CreatePluginSourceHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|