mirror of
https://github.com/iptv-org/iptv.git
synced 2026-06-22 21:08:31 +08:00
13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
export type SubdivisionSerializedData = {
|
|
code: string
|
|
name: string
|
|
countryCode: string
|
|
country?: CountrySerializedData
|
|
}
|
|
|
|
export type SubdivisionData = {
|
|
code: string
|
|
name: string
|
|
country: string
|
|
}
|