UNPKG

hud-ai

Version:
14 lines (13 loc) 290 B
import { Person } from './Person'; export interface Tweet { id: string; createdAt: Date; updatedAt: Date; twitterCreatedAt: Date; personId: string; twitterTweetId: string; text: string; importanceScore: number; person?: Person; reactions?: object; }