@swc/wasm-web 1.11.9 → 1.11.10
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/package.json +1 -1
- package/wasm.d.ts +23 -1
- package/wasm.js +1 -1
- package/wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/wasm.d.ts
CHANGED
|
@@ -878,7 +878,29 @@ export interface ReactConfig {
|
|
|
878
878
|
/**
|
|
879
879
|
* Enable fast refresh feature for React app
|
|
880
880
|
*/
|
|
881
|
-
refresh?:
|
|
881
|
+
refresh?:
|
|
882
|
+
refresh?:
|
|
883
|
+
| boolean
|
|
884
|
+
| {
|
|
885
|
+
/**
|
|
886
|
+
* Identifier for the `react-refresh` register function.
|
|
887
|
+
*
|
|
888
|
+
* Defaults to `$RefreshReg$`
|
|
889
|
+
*/
|
|
890
|
+
refreshReg?: string;
|
|
891
|
+
/**
|
|
892
|
+
* Identifier for the `react-refresh` signature function.
|
|
893
|
+
*
|
|
894
|
+
* Defaults to `$RefreshSig$`
|
|
895
|
+
*/
|
|
896
|
+
refreshSig?: string;
|
|
897
|
+
/**
|
|
898
|
+
* Flag to emit full signatures.
|
|
899
|
+
*
|
|
900
|
+
* Defaults to `false`
|
|
901
|
+
*/
|
|
902
|
+
emitFullSignatures?: boolean;
|
|
903
|
+
};
|
|
882
904
|
|
|
883
905
|
/**
|
|
884
906
|
* jsx runtime
|
package/wasm.js
CHANGED
|
@@ -658,7 +658,7 @@ function __wbg_get_imports() {
|
|
|
658
658
|
const ret = false;
|
|
659
659
|
return ret;
|
|
660
660
|
};
|
|
661
|
-
imports.wbg.
|
|
661
|
+
imports.wbg.__wbindgen_closure_wrapper15542 = function(arg0, arg1, arg2) {
|
|
662
662
|
const ret = makeMutClosure(arg0, arg1, 1026, __wbg_adapter_50);
|
|
663
663
|
return addHeapObject(ret);
|
|
664
664
|
};
|
package/wasm_bg.wasm
CHANGED
|
Binary file
|