UNPKG

instagram-graph-api

Version:

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

22 lines (21 loc) 583 B
import { Method } from '../RequestConfig'; import { AbstractCommentRequest } from './AbstractCommentRequest'; import { CommentUpdateResponse } from './CommentUpdateResponse'; /** * Request to delete a comment. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.6.0 */ export declare class DeleteCommentRequest extends AbstractCommentRequest<CommentUpdateResponse> { /** * @inheritdoc */ protected parseResponse(response: { success: boolean; }): CommentUpdateResponse; /** * @inheritdoc */ protected method(): Method; }