hot-updater 0.17.0 → 0.18.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.
@@ -0,0 +1,12 @@
1
+ import { PluginObj } from "@babel/core";
2
+ import * as babelTypes from "@babel/types";
3
+
4
+ //#region src/plugins/babel.d.ts
5
+ declare function export_default({
6
+ types: t
7
+ }: {
8
+ types: typeof babelTypes;
9
+ }): PluginObj;
10
+
11
+ //#endregion
12
+ export { export_default as default };
@@ -1,3 +1,12 @@
1
- import type { PluginObj } from "@babel/core";
2
- export declare const getChannel: () => string | null;
3
- export default function replaceHotUpdaterBundleId(): PluginObj;
1
+ import { PluginObj } from "@babel/core";
2
+ import * as babelTypes from "@babel/types";
3
+
4
+ //#region src/plugins/babel.d.ts
5
+ declare function export_default({
6
+ types: t
7
+ }: {
8
+ types: typeof babelTypes;
9
+ }): PluginObj;
10
+
11
+ //#endregion
12
+ export { export_default as default };