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

@@ -9,7 +9,8 @@ import type { Theme } from '@/theme.js';
import type { SoundType } from '@/utility/sound.js';
import type { Plugin } from '@/plugin.js';
import type { DeviceKind } from '@/utility/device-kind.js';
import type { Column, DeckProfile } from '@/deck.js';
import type { DeckProfile } from '@/deck.js';
import type { PreferencesDefinition } from './manager.js';
import { DEFAULT_DEVICE_KIND } from '@/utility/device-kind.js';
/** サウンド設定 */
@@ -324,8 +325,4 @@ export const PREF_DEF = {
sfxVolume: 1,
},
},
} satisfies Record<string, {
default: any;
accountDependent?: boolean;
serverDependent?: boolean;
}>;
} satisfies PreferencesDefinition;