UNPKG

@vepler/http-sdk

Version:

The definitive TypeScript SDK for UK property technology. Access comprehensive property data, school metrics, demographics, planning applications, and more through a single, powerful API.

14 lines (13 loc) 847 B
import { Geographic } from '@vepler/area-reference-types'; export interface ResolveGeographyParams extends Geographic.ResolveGeographyQueryParams { spatialStrategy?: 'strict' | 'centroid' | 'intersection' | 'weighted'; intersectionThreshold?: number; maxChildren?: number; } export declare function resolveGeography(params: ResolveGeographyParams): Promise<Geographic.ResolveGeographyResponse>; export interface GetGeographyTypesParams { includeExamples?: boolean; } export declare function getGeographyTypes(params?: GetGeographyTypesParams): Promise<Geographic.GeographicTypesResponse>; export type CheckResolutionCapabilityParams = Geographic.CheckResolutionCapabilityQueryParams; export declare function checkResolutionCapability(params: CheckResolutionCapabilityParams): Promise<Geographic.CheckResolutionCapabilityResponse>;