UNPKG

@astro-community/astro-embed-bluesky

Version:

Component to embed a fully-styled Bluesky post with no client-side JavaScript in your Astro site

22 lines (19 loc) 490 B
import { AppBskyFeedPost, AppBskyFeedDefs, AppBskyEmbedRecord, AppBskyEmbedExternal, AppBskyEmbedImages, AppBskyEmbedRecordWithMedia, AppBskyEmbedVideo, } from '@atproto/api'; export interface Post extends AppBskyFeedDefs.PostView { record: AppBskyFeedPost.Record; } export type EmbedView = | AppBskyEmbedRecord.View | AppBskyEmbedImages.View | AppBskyEmbedVideo.View | AppBskyEmbedExternal.View | AppBskyEmbedRecordWithMedia.View | { [k: string]: unknown; $type: string };