export interface InstagramPhotoData { image: string; thumbnail: string; ts: number; link: string; } /** * The instagram photos */ declare class InstagramPhoto { /** * Not sure what this is, looks like an id */ ts: number; /** * The url of the photo */ image: string; /** * Smaller version of the photo */ thumbnail: string; /** * Link to the public version of the photo where you can find comments etc */ link: string; constructor(instagramPhotoData: InstagramPhotoData); } export { InstagramPhoto };