ts-foursquare
Version:
A simple library for Foursquare API
13 lines (12 loc) • 436 B
TypeScript
interface ILocationSearchParam {
[key: string]: string | number | boolean | undefined;
}
export interface GetLocationSearchProps {
params: ILocationSearchParam;
}
export declare const getLocationSearch: ({ params }?: GetLocationSearchProps) => string;
export declare const getLocationHref: ({ origin, pathname, params, }: {
origin: string;
pathname: string;
} & GetLocationSearchProps) => string;
export {};