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.

28 lines (27 loc) 968 B
import { getAreas } from './routes/get-areas'; import { queryMetrics } from './routes/query-metrics'; import { withinAreas } from './routes/within-areas'; import { getChildAreas } from './routes/get-child-areas'; import { queryByType } from './routes/query-by-type'; import { borderAreas } from './routes/border-areas'; import { coverage } from './routes/coverage'; import { resolveGeography, getGeographyTypes, checkResolutionCapability } from './routes/resolve-geography'; declare const _default: { get: typeof getAreas; within: typeof withinAreas; children: typeof getChildAreas; border: typeof borderAreas; coverage: typeof coverage; metrics: { query: typeof queryMetrics; }; query: { byType: typeof queryByType; }; resolver: { resolve: typeof resolveGeography; getTypes: typeof getGeographyTypes; checkCapability: typeof checkResolutionCapability; }; }; export default _default;