this repo has no description
1import { ExtensionWebpackModule } from "@moonlight-mod/types";
2
3export const fluxDispatcher: ExtensionWebpackModule = {
4 dependencies: [
5 { ext: "spacepack", id: "spacepack" },
6 "isDispatching",
7 "dispatch"
8 ],
9 run: (module, exports, require) => {
10 const spacepack = require("spacepack_spacepack");
11 module.exports = spacepack.findByExports(
12 "isDispatching",
13 "dispatch"
14 )[0].exports.default;
15 }
16};