19 lines
362 B
TypeScript
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 };
|