diff options
Diffstat (limited to 'internal/ap/interfaces.go')
-rw-r--r-- | internal/ap/interfaces.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/internal/ap/interfaces.go b/internal/ap/interfaces.go index 4538c476f..9e606db62 100644 --- a/internal/ap/interfaces.go +++ b/internal/ap/interfaces.go @@ -247,14 +247,8 @@ type CollectionPageIterator interface { NextPage() WithIRI PrevPage() WithIRI - NextItem() IteratorItemable - PrevItem() IteratorItemable -} - -// IteratorItemable represents the minimum interface for an item in an iterator. -type IteratorItemable interface { - WithIRI - WithType + NextItem() TypeOrIRI + PrevItem() TypeOrIRI } // Flaggable represents the minimum interface for an activitystreams 'Flag' activity. @@ -267,6 +261,12 @@ type Flaggable interface { WithObject } +// TypeOrIRI represents the minimum interface for something that may be a vocab.Type OR IRI. +type TypeOrIRI interface { + WithIRI + WithType +} + // WithJSONLDId represents an activity with JSONLDIdProperty. type WithJSONLDId interface { GetJSONLDId() vocab.JSONLDIdProperty |