|
|
|
@ -10,6 +10,7 @@ import type { Matches, Content } from 'requests' |
|
|
|
import { ProfileTypes } from 'config' |
|
|
|
import { ProfileTypes } from 'config' |
|
|
|
import { getProfileLogo, getSportLexic } from 'helpers' |
|
|
|
import { getProfileLogo, getSportLexic } from 'helpers' |
|
|
|
import { useLexicsStore } from 'features/LexicsStore' |
|
|
|
import { useLexicsStore } from 'features/LexicsStore' |
|
|
|
|
|
|
|
import { MatchStatuses } from 'features/HeaderFilters' |
|
|
|
|
|
|
|
|
|
|
|
export type Props = { |
|
|
|
export type Props = { |
|
|
|
matches: Matches, |
|
|
|
matches: Matches, |
|
|
|
@ -23,7 +24,7 @@ export type Match = { |
|
|
|
preview: string, |
|
|
|
preview: string, |
|
|
|
sportName: string, |
|
|
|
sportName: string, |
|
|
|
sportType: number, |
|
|
|
sportType: number, |
|
|
|
streamStatus: number, |
|
|
|
streamStatus: MatchStatuses, |
|
|
|
team1Logo: string, |
|
|
|
team1Logo: string, |
|
|
|
team1Name: string, |
|
|
|
team1Name: string, |
|
|
|
team1Score: number, |
|
|
|
team1Score: number, |
|
|
|
|