Simplify import paths

This commit is contained in:
redphx
2024-05-01 22:01:39 +07:00
parent 006e21f477
commit 0114108bdf
29 changed files with 167 additions and 163 deletions

View File

@@ -1,12 +1,12 @@
import { BxEvent } from "./bx-event";
import { BX_FLAGS } from "./bx-flags";
import { LoadingScreen } from "../modules/loading-screen";
import { PrefKey, getPref } from "./preferences";
import { RemotePlay } from "../modules/remote-play";
import { StreamBadges } from "../modules/stream/stream-badges";
import { TouchController } from "../modules/touch-controller";
import { STATES } from "./global";
import { getPreferredServerRegion } from "./region";
import { BxEvent } from "@/utils/bx-event";
import { BX_FLAGS } from "@/utils/bx-flags";
import { LoadingScreen } from "@/modules/loading-screen";
import { PrefKey, getPref } from "@/utils/preferences";
import { RemotePlay } from "@/modules/remote-play";
import { StreamBadges } from "@/modules/stream/stream-badges";
import { TouchController } from "@/modules/touch-controller";
import { STATES } from "@/utils/global";
import { getPreferredServerRegion } from "@/utils/region";
export const NATIVE_FETCH = window.fetch;