appview-less bluesky client
24
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0eaf2dff795c9df008f40a99ca4e2714395bd79d 19 lines 445 B view raw
1import type { 2 AppBskyEmbedExternal, 3 AppBskyEmbedImages, 4 AppBskyEmbedRecord, 5 AppBskyEmbedRecordWithMedia, 6 AppBskyEmbedVideo 7} from '@atcute/bluesky'; 8 9export type AppBskyEmbeds = 10 | AppBskyEmbedExternal.Main 11 | AppBskyEmbedImages.Main 12 | AppBskyEmbedRecord.Main 13 | AppBskyEmbedRecordWithMedia.Main 14 | AppBskyEmbedVideo.Main; 15 16export type AppBskyEmbedMedia = 17 | AppBskyEmbedImages.Main 18 | AppBskyEmbedVideo.Main 19 | AppBskyEmbedExternal.Main;