tracks lexicons and how many times they appeared on the jetstream
at main 456 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"; 21export type ShowOption = "server init" | "stream start";