/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface InstagramPreview */ export interface InstagramPreview { /** * * @type {string} * @memberof InstagramPreview */ postPic: string; /** * * @type {number} * @memberof InstagramPreview */ commentCount: number; /** * * @type {string} * @memberof InstagramPreview */ userName: string; /** * * @type {string} * @memberof InstagramPreview */ userPic: string; /** * * @type {string} * @memberof InstagramPreview */ captionText: string; } /** * Check if a given object implements the InstagramPreview interface. */ export declare function instanceOfInstagramPreview(value: object): value is InstagramPreview; export declare function InstagramPreviewFromJSON(json: any): InstagramPreview; export declare function InstagramPreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstagramPreview; export declare function InstagramPreviewToJSON(value?: InstagramPreview | null): any;