tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

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

at 9da170a1b25fa1614cafe5c5bcb47e4c89cc9abf 20 lines 399 B view raw
1export type Events = { 2 per_second: number; 3 events: Record<string, EventRecord>; 4}; 5export type EventRecord = { 6 last_seen: number; 7 count: number; 8 deleted_count: number; 9}; 10export type NsidCount = { 11 nsid: string; 12 last_seen: number; 13 count: number; 14 deleted_count: number; 15}; 16export type Since = { 17 since: number; 18}; 19 20export type SortOption = "total" | "created" | "deleted" | "date";