1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 14:56:16 +02:00

fix(frontend): fix type errors

This commit is contained in:
syuilo
2025-03-12 20:17:54 +09:00
parent 35a4544477
commit 3129fcf164
4 changed files with 28 additions and 17 deletions

View File

@@ -4,10 +4,10 @@
*/
import { v4 as uuid } from 'uuid';
import type { PreferencesProfile, StorageProvider } from '@/preferences/profile.js';
import type { PreferencesProfile, StorageProvider } from '@/preferences/manager.js';
import { cloudBackup } from '@/preferences/utility.js';
import { miLocalStorage } from '@/local-storage.js';
import { isSameCond, ProfileManager } from '@/preferences/profile.js';
import { isSameCond, ProfileManager } from '@/preferences/manager.js';
import { store } from '@/store.js';
import { $i } from '@/account.js';
import { misskeyApi } from '@/utility/misskey-api.js';