A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
at main 339 B view raw
1// Re-export precise lexicon types from @atcute/bluesky instead of redefining. 2import type { AppBskyFeedPost, AppBskyActorProfile } from "@atcute/bluesky"; 3 4// The atcute lexicon modules expose Main interface for record input shapes. 5export type FeedPostRecord = AppBskyFeedPost.Main; 6export type ProfileRecord = AppBskyActorProfile.Main;