instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
14 lines (13 loc) • 390 B
TypeScript
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;
}