diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
commit | 61fd38d6d9170a9583c62366a2d4afa40507ce01 (patch) | |
tree | 50132ae08fb39b453bca0dbeeae311e12b2528ed /src/webpack | |
parent | a7dbd73547104540218d4699fcf643fca727d2fc (diff) | |
download | Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.gz Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.bz2 Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.zip |
style: Sort imports
Diffstat (limited to 'src/webpack')
-rw-r--r-- | src/webpack/common.tsx | 9 | ||||
-rw-r--r-- | src/webpack/index.ts | 2 | ||||
-rw-r--r-- | src/webpack/webpack.ts | 1 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx index f7e66f3..0bcc82c 100644 --- a/src/webpack/common.tsx +++ b/src/webpack/common.tsx @@ -16,14 +16,13 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import type Components from "discord-types/components"; import { User } from "discord-types/general"; +import type Other from "discord-types/other"; +import type Stores from "discord-types/stores"; import { lazyWebpack } from "../utils/misc"; -import { _resolveReady, filters, waitFor, mapMangledModuleLazy } from "./webpack"; - -import type Components from "discord-types/components"; -import type Stores from "discord-types/stores"; -import type Other from "discord-types/other"; +import { _resolveReady, filters, mapMangledModuleLazy,waitFor } from "./webpack"; export const Margins = lazyWebpack(filters.byProps(["marginTop20"])); export let FluxDispatcher: Other.FluxDispatcher; diff --git a/src/webpack/index.ts b/src/webpack/index.ts index 53eb626..036c2a3 100644 --- a/src/webpack/index.ts +++ b/src/webpack/index.ts @@ -16,5 +16,5 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -export * from "./webpack"; export * as Common from "./common"; +export * from "./webpack"; diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index 58589c2..7604266 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -17,6 +17,7 @@ */ import type { WebpackInstance } from "discord-types/other"; + import { proxyLazy } from "../utils/proxyLazy"; export let _resolveReady: () => void; |