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
|
|
}
|