1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-30 07:14:35 +02:00
This commit is contained in:
mei23
2019-01-21 04:48:44 +09:00
parent 171b046de5
commit 63d8bbe29d

View File

@@ -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;