aboutsummaryrefslogtreecommitdiff
path: root/src/Vencord.ts
blob: 0f2b25a17bd2d403136f11120e2a8c79160ecb6e (plain)
1
2
3
4
5
6
7
8
9
10
11
export * as Plugins from "./plugins";
export * as Webpack from "./webpack";
export * as Api from "./api";

import "./utils/patchWebpack";
import "./utils/quickCss";
import { waitFor } from "./webpack";

export let Components;

waitFor("useState", () => setTimeout(() => import("./components").then(mod => Components = mod), 0));