import { UnionOrIntersection } from './common'; import { GeoGridFastRequestSearchBase, GeoGridProperties, GeoGridResponse, GeohashCentroid } from './geogrid'; export type GeohashFastRequestSearch = GeoGridFastRequestSearchBase; export type GeohashFastRequestArrivalSearch = { one_to_many?: Array; many_to_one?: Array; }; export type GeohashFastRequest = { /** * Values can be in range [1, 6] */ resolution: number; properties: Array; arrival_searches: GeohashFastRequestArrivalSearch; unions?: Array; intersections?: Array; }; export type GeohashFastResponse = GeoGridResponse;