@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.
12 lines (11 loc) • 485 B
TypeScript
import { Areas } from '@vepler/area-reference-types';
export interface WithinAreasParams extends Omit<Areas.WithinQueryParams, 'type'> {
/**
* Type of area to query - can be:
* - A single value (e.g. "lsoa21")
* - A comma-separated list (e.g. "lsoa21,msoa21,county")
* - An array of types (e.g. ["lsoa21", "msoa21", "county"])
*/
type: string | string[];
}
export declare function withinAreas(params: WithinAreasParams): Promise<Areas.WithinResponse>;