/** * The class handling the connection to the tinder api */ declare class HttpClient { /** * Handle to the axios client */ private axiosClient; /** * Tinder auth token */ private authToken; constructor(); /** * Authenticate to tinder */ auth(facebookToken: string, facebookId: string): Promise; /** * Do a get request using the axios client */ get(url: string, checkStatus?: boolean, options?: object): Promise; /** * Do a get request using the axios client */ post(url: string, data?: {}, checkStatus?: boolean, options?: object): Promise; } export { HttpClient };