the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

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

at 05fbd57d79f414c8421f24f41035980129c7ad8d 9 lines 206 B view raw
1import type pino from 'pino' 2import type { Database } from '#/db' 3import type { Ingester } from '#/firehose/ingester' 4 5export type AppContext = { 6 db: Database 7 ingester: Ingester 8 logger: pino.Logger 9}