ts-foursquare
Version:
A simple library for Foursquare API
47 lines (46 loc) • 1.26 kB
TypeScript
export declare const payload: {
meta: {
code: number;
requestId: string;
};
response: {
venues: {
categories: {
icon: {
prefix: string;
suffix: string;
};
id: string;
name: string;
pluralName: string;
primary: boolean;
shortName: string;
}[];
hasPerk: boolean;
id: string;
location: {
address: string;
cc: string;
city: string;
country: string;
crossStreet: string;
distance: number;
formattedAddress: string[];
labeledLatLngs: {
label: string;
lat: number;
lng: number;
}[];
lat: number;
lng: number;
postalCode: string;
state: string;
};
name: string;
referralId: string;
venuePage: {
id: string;
};
}[];
};
};