sigit.io/src/types/cache.ts

7 lines
104 B
TypeScript
Raw Normal View History

import { Event } from 'nostr-tools'
2024-06-28 09:24:14 +00:00
export interface CachedEvent {
event: Event
cachedAt: number
}