67d0a6c0c2
* Create Top Followed Users leaderboard * Switch to increment/decrement approach for caching user follower counts * Backfill script for user follow counts * Appease ESLint * Address review comment Co-authored-by: James Grugett <jahooma@gmail.com>
5 lines
62 B
TypeScript
5 lines
62 B
TypeScript
export type Follow = {
|
|
userId: string
|
|
timestamp: number
|
|
}
|