NewsCache.ts 107 B

1234567
  1. export interface NewsCache {
  2. date: string | null
  3. content: string | null
  4. dismissed: boolean
  5. }