@hot-updater/repack 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,9 @@
1
+ import { Compiler, RspackPluginInstance } from "@rspack/core";
2
+
3
+ //#region src/index.d.ts
4
+ declare class HotUpdaterPlugin implements RspackPluginInstance {
5
+ apply(compiler: Compiler): void;
6
+ }
7
+
8
+ //#endregion
9
+ export { HotUpdaterPlugin };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,9 @@
1
- import type { Compiler, RspackPluginInstance } from "@rspack/core";
2
- export declare const getChannel: () => string | null;
3
- export declare class HotUpdaterPlugin implements RspackPluginInstance {
4
- apply(compiler: Compiler): void;
1
+ import { Compiler, RspackPluginInstance } from "@rspack/core";
2
+
3
+ //#region src/index.d.ts
4
+ declare class HotUpdaterPlugin implements RspackPluginInstance {
5
+ apply(compiler: Compiler): void;
5
6
  }
7
+
8
+ //#endregion
9
+ export { HotUpdaterPlugin };