mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-23 23:15:10 +00:00
12 lines
No EOL
371 B
TypeScript
12 lines
No EOL
371 B
TypeScript
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)); |