blob: 22dff83a21e77e4e8fa2be32248bcf9f8071278e (
plain) (
blame)
1
2
3
4
5
|
import { Activity } from './activity'
import { ActivityPubCollection } from './activitypub-collection'
import { ActivityPubOrderedCollection } from './activitypub-ordered-collection'
export type RootActivity = Activity | ActivityPubCollection | ActivityPubOrderedCollection<Activity>
|