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.

11 lines (10 loc) 290 B
export interface GetPropertyParams { locationIds: string[]; attributes?: string[]; limit?: number; } export interface PropertyResponse { result: object[]; success: boolean; } export declare function getPropertyById(params: GetPropertyParams): Promise<PropertyResponse>;