this repo has no description
1import { ExtensionWebExports } from "@moonlight-mod/types"; 2 3import { react } from "./react"; 4import { flux } from "./flux"; 5import { stores } from "./stores"; 6import { http } from "./http"; 7import { components } from "./components"; 8import { fluxDispatcher } from "./fluxDispatcher"; 9 10export const webpackModules: ExtensionWebExports["webpackModules"] = { 11 react, 12 flux, 13 stores, 14 http, 15 components, 16 fluxDispatcher 17};