summaryrefslogtreecommitdiff
path: root/internal/typeutils/asinterfaces.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/typeutils/asinterfaces.go')
-rw-r--r--internal/typeutils/asinterfaces.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/typeutils/asinterfaces.go b/internal/typeutils/asinterfaces.go
index eea7fd7d9..aae3ecf93 100644
--- a/internal/typeutils/asinterfaces.go
+++ b/internal/typeutils/asinterfaces.go
@@ -111,6 +111,18 @@ type Likeable interface {
withObject
}
+// Announceable represents the minimum interface for an activitystreams 'announce' activity.
+type Announceable interface {
+ withJSONLDId
+ withTypeName
+
+ withActor
+ withObject
+ withPublished
+ withTo
+ withCC
+}
+
type withJSONLDId interface {
GetJSONLDId() vocab.JSONLDIdProperty
}