UNPKG

instagram-graph-api

Version:

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

21 lines (20 loc) 609 B
import { AxiosResponse } from 'axios'; 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: AxiosResponse<never>): CommentUpdateResponse; /** * @inheritdoc */ protected method(): Method; }