17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import type { FeedItemType } from '../value-objects/FeedItemType';
|
|
|
|
export interface FeedItem {
|
|
id: string;
|
|
timestamp: Date;
|
|
type: FeedItemType;
|
|
actorFriendId?: string;
|
|
actorDriverId?: string;
|
|
leagueId?: string;
|
|
raceId?: string;
|
|
teamId?: string;
|
|
position?: number;
|
|
headline: string;
|
|
body?: string;
|
|
ctaLabel?: string;
|
|
ctaHref?: string;
|
|
} |