@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.
21 lines (20 loc) • 846 B
TypeScript
import { getSchools } from './routes/get-schools';
import { getSchoolById, GetSchoolByIdParams } from './routes/get-school-by-id';
import { searchSchools } from './routes/search-schools';
import { autocompleteSchools } from './routes/autocomplete-schools';
import { getMetrics } from './routes/get-metrics';
import { getGeographicMetrics } from './routes/get-geographic-metrics';
import { getTimeSeriesMetrics } from './routes/get-timeseries-metrics';
export { GetSchoolByIdParams };
declare const _default: {
getSchools: typeof getSchools;
getSchoolById: typeof getSchoolById;
search: typeof searchSchools;
metrics: {
get: typeof getMetrics;
timeSeries: typeof getTimeSeriesMetrics;
geographic: typeof getGeographicMetrics;
};
autocomplete: typeof autocompleteSchools;
};
export default _default;