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) 496 B
import type { AppBskyEmbedExternal, AppBskyEmbedImages, AppBskyEmbedRecord, AppBskyEmbedRecordWithMedia, AppBskyEmbedVideo, AppBskyFeedDefs, AppBskyFeedPost, } from '@atcute/bluesky'; export interface Post extends AppBskyFeedDefs.PostView { record: AppBskyFeedPost.Main; } export type EmbedView = | AppBskyEmbedRecord.View | AppBskyEmbedImages.View | AppBskyEmbedVideo.View | AppBskyEmbedExternal.View | AppBskyEmbedRecordWithMedia.View | { [k: string]: unknown; $type: string };