Move preferences.ts & settings.ts to utils/

This commit is contained in:
redphx
2024-04-27 15:23:49 +07:00
parent dcb4f7471f
commit 18f50e6a20
26 changed files with 32 additions and 33 deletions

View File

@@ -2,14 +2,14 @@ import { GamepadKey } from "./definitions";
import { CE, createButton, ButtonStyle } from "../../utils/html";
import { t } from "../../utils/translation";
import { Dialog } from "../dialog";
import { getPref, setPref, PrefKey } from "../preferences";
import { getPref, setPref, PrefKey } from "../../utils/preferences";
import { MkbPresetKey, GamepadKeyName } from "./definitions";
import { KeyHelper } from "./key-helper";
import { MkbPreset } from "./mkb-preset";
import { MkbHandler } from "./mkb-handler";
import { LocalDb } from "../../utils/local-db";
import { Icon } from "../../utils/html";
import { SettingElement } from "../settings";
import { SettingElement } from "../../utils/settings";
import type { MkbPresetData, MkbStoredPresets } from "../../types/mkb";