Pronouns labels on Bluesky
1export interface EventStream { 2 did: string; 3 time_us: number; 4 type: string; 5 commit?: { 6 rev: string; 7 type: string; 8 collection: string; 9 rkey: string; 10 record: { 11 $type: string; 12 createdAt: string; 13 subject: { 14 cid: string; 15 uri: string; 16 }; 17 }; 18 }; 19} 20 21export interface Label { 22 ver?: number; 23 src: string; 24 uri: string; 25 cid?: string; 26 val: string; 27 neg?: boolean; 28 cts: string; 29 exp?: string; 30 sig?: Uint8Array; 31 [k: string]: unknown; 32}