blob: b0ff540760436ea2d473d251702cc1f0f5f23062 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
export * as Plugins from "./plugins";
export * as Webpack from "./webpack";
export * as Api from "./api";
export { Settings } from "./api/settings";
import "./utils/patchWebpack";
import "./utils/quickCss";
import { waitFor } from "./webpack";
export let Components;
waitFor("useState", () => setTimeout(() => import("./components").then(mod => Components = mod), 0));
|