Vencord/src/Vencord.ts

13 lines
372 B
TypeScript
Raw Normal View History

2022-08-29 16:05:22 -04:00
export * as Plugins from "./plugins";
2022-08-30 22:07:16 -04:00
export * as Webpack from "./webpack";
2022-08-29 16:05:22 -04:00
export * as Api from "./api";
export { Settings } from "./api/settings";
2022-08-29 14:27:47 -04:00
2022-08-28 20:25:27 -04:00
import "./utils/patchWebpack";
2022-08-29 12:11:44 -04:00
import "./utils/quickCss";
2022-08-31 14:47:07 -04:00
import { waitFor } from "./webpack";
export let Components;
2022-09-16 16:59:34 -04:00
waitFor("useState", () => setTimeout(() => import("./components").then(mod => Components = mod), 0));