UNPKG

instagram-graph-api

Version:

A library to help perform requests to the Instagram Graph API.

14 lines (13 loc) 390 B
import { AbstractGetHashtagMediaRequest } from './AbstractGetHashtagMediaRequest'; /** * A request that gets information about the recent media of an hashtag. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.5.0 */ export declare class GetHashtagRecentMediaRequest extends AbstractGetHashtagMediaRequest { /** * @inheritdoc */ protected url(): string; }