@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
44 lines (43 loc) • 1.22 kB
TypeScript
/**
* Neynar API
* The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 3.34.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { CastDehydrated } from './cast-dehydrated';
import type { User } from './user';
/**
*
* @export
* @interface ReactionWithUserInfo
*/
export interface ReactionWithUserInfo {
/**
*
* @type {string}
* @memberof ReactionWithUserInfo
*/
'object': ReactionWithUserInfoObjectEnum;
/**
*
* @type {CastDehydrated}
* @memberof ReactionWithUserInfo
*/
'cast': CastDehydrated;
/**
*
* @type {User}
* @memberof ReactionWithUserInfo
*/
'user': User;
}
export declare const ReactionWithUserInfoObjectEnum: {
readonly Likes: "likes";
readonly Recasts: "recasts";
};
export type ReactionWithUserInfoObjectEnum = typeof ReactionWithUserInfoObjectEnum[keyof typeof ReactionWithUserInfoObjectEnum];