diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-14 21:34:35 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-14 21:34:35 +0200 |
commit | 296336535f6d23c586c7e83edf0420b58cbf011a (patch) | |
tree | aa2a12bd071b36d44f43da992aa9fddfdd11bf50 /src/utils/index.ts | |
parent | 563f2fb1dc2067345e4fbd71ce8da7d60d2928e1 (diff) | |
download | Vencord-296336535f6d23c586c7e83edf0420b58cbf011a.tar.gz Vencord-296336535f6d23c586c7e83edf0420b58cbf011a.tar.bz2 Vencord-296336535f6d23c586c7e83edf0420b58cbf011a.zip |
Fix modals, add wp.mapMangledModule
Diffstat (limited to 'src/utils/index.ts')
-rw-r--r-- | src/utils/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..c5f4283 --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,11 @@ +export * from "./ChangeList"; +export * from "./debounce"; +export * from "./misc"; +export * from "./proxyLazy"; + +export { default as IpcEvents } from "./IpcEvents"; +export { default as Logger } from "./logger"; + +export * as Constants from "./constants"; +export * as Discord from "./discord"; +export * as Modals from "./modal"; |