Vencord/src/Vencord.ts
2022-08-31 20:47:07 +02:00

11 lines
No EOL
328 B
TypeScript

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));