import { InstagramPhoto } from '.'; export interface InstagramData { last_fetch_time: string; completed_initial_fetch: boolean; photos: InstagramPhoto[]; media_count: number; profile_picture: string; username: string; } /** * The tinder photos (not instagram but the one connected to the profile) */ declare class Instagram { /** * The last time the instagram profile was fetched */ lastFetchTime: Date; /** * Wether or not the instagram profile has been fetched yet */ completedInitialFetch: boolean; /** * The array of photos that tinder fetched */ photos: InstagramPhoto[]; /** * How many photos the profile contains (or that have been fetched) */ mediaCount: number; /** * The current profile picture on instagram */ profilePicture: string; /** * The instagram username */ username: string; constructor(instagramData: InstagramData); /** * Check if a profile is public */ isPublic(): Promise; } export { Instagram };