blob: 3a405b2e052d3dac51f15f940308297ff3503069 (
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));
|