@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
16 lines (15 loc) • 286 B
JavaScript
//#region src/types/value/embed.ts
/**
* oEmbed 1.0 possible types.
*
* @see oEmbed specification: {@link https://oembed.com}
*/
const OEmbedType = {
Photo: "photo",
Video: "video",
Link: "link",
Rich: "rich"
};
//#endregion
export { OEmbedType };
//# sourceMappingURL=embed.js.map