UNPKG

instagram-graph-api

Version:

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

13 lines (12 loc) 223 B
/** * The type of the 'children' field in the responses. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.5.0 */ export type Children = { data: InnerId[]; }; export type InnerId = { id: string; };