refactor: improve type definitions for dailyCharacter and selectedCharacters in HintsPanel component

This commit is contained in:
2026-03-14 17:20:26 +01:00
parent 9485d9841c
commit eeccf812cf

View File

@@ -1,6 +1,8 @@
<script lang="ts">
export let dailyCharacter: any;
export let selectedCharacters: any[];
import type { CharacterWithRelations } from "$lib/server/daily-character";
export let dailyCharacter: CharacterWithRelations;
export let selectedCharacters: CharacterWithRelations[];
export let showOriginUnlock: boolean = false;
export let showFruitUnlock: boolean = false;
export let showAffiliationUnlock: boolean = false;