aboutsummaryrefslogtreecommitdiff
path: root/src/webpack/common.tsx
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-11-28 13:58:14 +0100
committerVendicated <vendicated@riseup.net>2022-11-28 13:59:53 +0100
commita0a1a4d139b6408419cd564611c26bd0dbade145 (patch)
treefec1171f5208c500843412cdcc87dcd9da9de538 /src/webpack/common.tsx
parentbad96b78879f296d5b9e7adacb03756b0f58427a (diff)
downloadVencord-a0a1a4d139b6408419cd564611c26bd0dbade145.tar.gz
Vencord-a0a1a4d139b6408419cd564611c26bd0dbade145.tar.bz2
Vencord-a0a1a4d139b6408419cd564611c26bd0dbade145.zip
enforce path aliases with eslint
Diffstat (limited to 'src/webpack/common.tsx')
-rw-r--r--src/webpack/common.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx
index e606f16..bd6a69a 100644
--- a/src/webpack/common.tsx
+++ b/src/webpack/common.tsx
@@ -18,13 +18,15 @@
import { LazyComponent } from "@utils/misc";
import { proxyLazy } from "@utils/proxyLazy";
+import {
+ _resolveReady,
+ filters, findByCode, findByCodeLazy, findByPropsLazy, mapMangledModule, mapMangledModuleLazy, waitFor
+} from "@webpack";
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 { _resolveReady, filters, findByCode, findByCodeLazy, findByPropsLazy, mapMangledModule, mapMangledModuleLazy, waitFor } from "./webpack";
-
export const Margins = findByPropsLazy("marginTop20");
export let FluxDispatcher: Other.FluxDispatcher;