mirror of https://github.com/iptv-org/iptv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
444 B
TypeScript
19 lines
444 B
TypeScript
import { CitySerializedData } from './city'
|
|
import { CountrySerializedData } from './country'
|
|
import { SubdivisionSerializedData } from './subdivision'
|
|
|
|
export type RegionSerializedData = {
|
|
code: string
|
|
name: string
|
|
countryCodes: string[]
|
|
countries?: CountrySerializedData[]
|
|
subdivisions?: SubdivisionSerializedData[]
|
|
cities?: CitySerializedData[]
|
|
}
|
|
|
|
export type RegionData = {
|
|
code: string
|
|
name: string
|
|
countries: string[]
|
|
}
|