import { Profile, User, HttpClient } from '../classes'; import { UserMetaData } from '../interfaces'; /** * The main class containing all the functions */ declare class TinderClient { /** * Handle to the http http */ http: HttpClient; constructor(); /** * Authenticate to tinder */ auth(facebookToken: string, facebookId: string): Promise; /** * get recommendations */ getSuggestions(): Promise; /** * Get your own meta data (swipes left, people seen, etc..) */ getMeta(): Promise; /** * Get profile data of people, if called with no arguments gives your own */ getProfile(id?: string): Promise; } export { TinderClient };