@ohm-vision/kiwi-tequila-api
Version:
Unofficial wrapper for Kiwi (tequila) API
18 lines • 677 B
TypeScript
import { LocationSourcePopularity } from "../types";
import { LocationDto } from "./location.dto";
export interface LocationSearchTopDestinationsDto extends Pick<LocationDto, "locale" | "limit" | "sort" | "active_only"> {
/**
* identifier of the start point - slug or id (airport, station, bus_station, city, subdivision, autonomous_territory, country)
* More than one is possible.
*
* Example : london_gb
*/
term: string;
/**
* based on searches (default), bookings or clicks
*
* Example : searches
*/
source_popularity?: LocationSourcePopularity;
}
//# sourceMappingURL=location-search-top-destination.dto.d.ts.map