UNPKG

instagram-graph-api

Version:

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

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