From 63d8bbe29dd6f326773214346350607cc4381996 Mon Sep 17 00:00:00 2001 From: mei23 Date: Mon, 21 Jan 2019 04:48:44 +0900 Subject: [PATCH] AP type --- src/remote/activitypub/type.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/remote/activitypub/type.ts b/src/remote/activitypub/type.ts index b902abea23..8a7662e5a5 100644 --- a/src/remote/activitypub/type.ts +++ b/src/remote/activitypub/type.ts @@ -114,6 +114,10 @@ export interface IBlock extends IActivity { type: 'Block'; } +export interface IUpdate extends IActivity { + type: 'Update'; +} + export type Object = ICollection | IOrderedCollection | @@ -127,4 +131,5 @@ export type Object = IRemove | ILike | IAnnounce | - IBlock; + IBlock | + IUpdate;