A couple of Bluesky feeds focused around PDSes
1import type { ResourceUri } from "@atcute/lexicons";
2
3export type DID = `did:${"plc" | "web"}:${string}`;
4
5export type Post = {
6 uri: ResourceUri;
7 cid: string;
8 indexed_at: string;
9 author: string;
10 pds?: string;
11};
12
13export type Author = {
14 did: DID;
15 pds: string;
16 pds_base: string;
17};