Files
bsky-social-app/src/geolocation/types.ts
T
2026-08-28 16:01:54 -05:00

9 lines
243 B
TypeScript

export type Geolocation = {
countryCode: string | undefined
regionCode: string | undefined
/** Only populated by the IP-based geolocation service. */
city?: string
serviceGeolocation?: Geolocation
deviceGeolocation?: Geolocation
}