Import Updates

Updating two type imports caught by build process
This commit is contained in:
Cal Corum 2025-07-17 14:30:10 -05:00
parent c8e70217f6
commit 16e6099fc3
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@
</template>
<script lang="ts">
import { type Game } from '@/services/apiResponseTypes'
import type { Game } from '@/services/apiResponseTypes'
import { fetchPitchingStatsForLastTwoWeeksByTeam, type PitchingStat } from '@/services/pitchingStatsService'
import { fetchPlayersByTeam, type Player } from '@/services/playersService'

View File

@ -106,7 +106,7 @@
</template>
<script lang="ts">
import { type Team } from '@/services/apiResponseTypes'
import type { Team } from '@/services/apiResponseTypes'
import { type LeagueInfo, fetchCurrentLeagueInfo } from '@/services/currentService'
import { fetchTransactionsByWeek, type Transaction } from '@/services/transactionsService'
import { CURRENT_SEASON } from '@/services/utilities'