import type { Actor } from "./activitypub/actor"; import type { List } from "./list"; import type { Trail } from "./trail"; interface FeedItem { id: string; actor: string; item: string; type: "trail" | "list" | "summit_log" expand: { actor?: Actor, item: Trail | List } created: string; } export { type FeedItem };