instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
16 lines (15 loc) • 384 B
TypeScript
import { AbstractResponse } from '../AbstractResponse';
/**
* A class to represent responses from any update to comments.
*
* @author Tiago Grosso <tiagogrosso99@gmail.com>
* @since 0.6.0
*/
export declare class CommentUpdateResponse extends AbstractResponse<{
success: boolean;
}> {
/**
* Whether the request was successful.
*/
wasSuccessful(): boolean;
}