2017-11-09 11:51:58 -05:00
|
|
|
import { Activity } from './activity'
|
|
|
|
import { ActivityPubCollection } from './activitypub-collection'
|
|
|
|
import { ActivityPubOrderedCollection } from './activitypub-ordered-collection'
|
|
|
|
|
2017-11-23 10:55:13 -05:00
|
|
|
export type RootActivity = Activity | ActivityPubCollection | ActivityPubOrderedCollection<Activity>
|