diff options
author | Vendicated <vendicated@riseup.net> | 2022-11-28 13:58:14 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-11-28 13:59:53 +0100 |
commit | a0a1a4d139b6408419cd564611c26bd0dbade145 (patch) | |
tree | fec1171f5208c500843412cdcc87dcd9da9de538 /src/webpack/common.tsx | |
parent | bad96b78879f296d5b9e7adacb03756b0f58427a (diff) | |
download | Vencord-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.tsx | 6 |
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; |