UNPKG

instagram-graph-api

Version:

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

22 lines (21 loc) 422 B
/** * Interface to represent the params of a request. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.1.0 */ export interface Params { access_token: string; fields?: string; limit?: number; before?: string; after?: string; metric?: string; period?: string; since?: Date; until?: Date; user_id?: string; q?: string; message?: string; hide?: boolean; }