UNPKG

ts-foursquare

Version:
13 lines (12 loc) 436 B
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 {};