blob: 174761649fc470971c2cfb79e4a0fddfb41eb314 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export type DeviceLocation = {
countryCode: string | undefined
regionCode: string | undefined
}
export type GeolocationStatus = DeviceLocation & {
isAgeRestrictedGeo: boolean
isAgeBlockedGeo: boolean
}
|