appview-less bluesky client
24
fork

Configure Feed

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

at main 16 lines 428 B view raw
1import type { CanonicalResourceUri, RecordKey } from '@atcute/lexicons'; 2import type { BacklinksSource } from './constellation'; 3 4export type Notification = { 5 kind: 'link'; 6 origin: string; 7 link: LinkNotification; 8}; 9 10export type LinkNotification = { 11 operation: 'create'; // todo: delete in the future 12 source: BacklinksSource; 13 source_record: CanonicalResourceUri; 14 source_rev: RecordKey; 15 subject: CanonicalResourceUri; 16};