Files
wanderer/web/src/lib/models/feed.ts
Christian Beutel 03bf5aa5ad finishes feed
2025-07-12 16:36:40 +02:00

19 lines
362 B
TypeScript

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 };