From e4f97babf701481b55cc10fb3448feab5f97c867 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 9 Nov 2017 17:51:58 +0100 Subject: Begin activitypub --- shared/models/activitypub/activitypub-ordered-collection.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shared/models/activitypub/activitypub-ordered-collection.ts (limited to 'shared/models/activitypub/activitypub-ordered-collection.ts') diff --git a/shared/models/activitypub/activitypub-ordered-collection.ts b/shared/models/activitypub/activitypub-ordered-collection.ts new file mode 100644 index 000000000..4080fd740 --- /dev/null +++ b/shared/models/activitypub/activitypub-ordered-collection.ts @@ -0,0 +1,9 @@ +import { Activity } from './activity' + +export interface ActivityPubOrderedCollection { + '@context': string[] + type: 'OrderedCollection' | 'OrderedCollectionPage' + totalItems: number + partOf?: string + orderedItems: Activity[] +} -- cgit v1.2.3