diff options
Diffstat (limited to 'src/Vencord.ts')
-rw-r--r-- | src/Vencord.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Vencord.ts b/src/Vencord.ts index 041335f..464be2d 100644 --- a/src/Vencord.ts +++ b/src/Vencord.ts @@ -18,20 +18,19 @@ export * as Api from "./api"; export * as Plugins from "./plugins"; +// eslint-disable-next-line @typescript-eslint/no-restricted-imports export * as Util from "./utils"; export * as QuickCss from "./utils/quickCss"; export * as Updater from "./utils/updater"; export * as Webpack from "./webpack"; - -import { popNotice, showNotice } from "./api/Notices"; -import { PlainSettings, Settings } from "./api/settings"; -import { patches, PMLogger, startAllPlugins } from "./plugins"; - export { PlainSettings, Settings }; -import "./webpack/patchWebpack"; import "./utils/quickCss"; +import "./webpack/patchWebpack"; +import { popNotice, showNotice } from "./api/Notices"; +import { PlainSettings, Settings } from "./api/settings"; +import { patches, PMLogger, startAllPlugins } from "./plugins"; import { checkForUpdates, UpdateLogger } from "./utils/updater"; import { onceReady } from "./webpack"; import { Router } from "./webpack/common"; |