instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
26 lines (25 loc) • 687 B
TypeScript
import { AbstractRequest } from '../AbstractRequest';
import { AbstractResponse } from '../AbstractResponse';
/**
* Abstract class for request related to comments.
*
* @author Tiago Grosso <tiagogrosso99@gmail.com>
* @since 0.6.0
*/
export declare abstract class AbstractCommentRequest<T extends AbstractResponse<unknown>> extends AbstractRequest<T> {
/**
* The id of the comment.
*/
private commentId;
/**
* The constructor.
*
* @param accessToken the access token.
* @param commentId the id of the comment.
*/
constructor(accessToken: string, commentId: string);
/**
* @inheritdoc
*/
protected url(): string;
}