import { Credentials, AuthFacebook } from "./types/auth"; import { Feeling } from "./types/feelings"; import { Recommandations } from "./types/recommandations"; export interface TinderApi { auth: { withFacebook: (credentials: Credentials) => Promise; }; feeling: { like: (userId: string) => Promise; pass: (userId: string) => Promise; }; recommandation: { getRecommandations: Promise; }; }