@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
38 lines (37 loc) • 1.3 kB
TypeScript
/**
* Farcaster API V2
* The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 2.46.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.
*/
/**
* The content type of the embedded file
* @export
* @enum {string}
*/
export declare const EmbedType: {
readonly Text: "text";
readonly Image: "image";
readonly Video: "video";
readonly Audio: "audio";
readonly TextHtml: "text/html";
readonly TextPlain: "text/plain";
readonly ImageJpeg: "image/jpeg";
readonly ImagePng: "image/png";
readonly ImageGif: "image/gif";
readonly ImageWebp: "image/webp";
readonly ImageSvgxml: "image/svg+xml";
readonly ImageHeif: "image/heif";
readonly VideoMp4: "video/mp4";
readonly VideoQuicktime: "video/quicktime";
readonly AudioMpeg: "audio/mpeg";
readonly ApplicationPdf: "application/pdf";
readonly ApplicationJson: "application/json";
readonly ApplicationXMpegurl: "application/x-mpegurl";
};
export type EmbedType = typeof EmbedType[keyof typeof EmbedType];