mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-02 15:31:55 +01:00
AP type
This commit is contained in:
parent
171b046de5
commit
63d8bbe29d
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue