iceshrimp-legacy/src/remote/activitypub/type.ts

49 lines
1.2 KiB
TypeScript
Raw Normal View History

export type Object = { [x: string]: any };
export interface IObject {
'@context': string | object | any[];
2018-03-31 12:55:00 +02:00
type: string;
id?: string;
summary?: string;
}
2018-04-07 09:14:35 +02:00
export interface IActivity extends IObject {
//type: 'Activity';
actor: IObject | string;
object: IObject | string;
target?: IObject | string;
}
export interface ICollection extends IObject {
type: 'Collection';
totalItems: number;
items: IObject | string | IObject[] | string[];
}
export interface IOrderedCollection extends IObject {
type: 'OrderedCollection';
totalItems: number;
orderedItems: IObject | string | IObject[] | string[];
}
export const isCollection = (object: IObject): object is ICollection =>
object.type === 'Collection';
export const isOrderedCollection = (object: IObject): object is IOrderedCollection =>
object.type === 'OrderedCollection';
export const isCollectionOrOrderedCollection = (object: IObject): object is ICollection | IOrderedCollection =>
isCollection(object) || isOrderedCollection(object);
2018-04-07 09:14:35 +02:00
export interface ICreate extends IActivity {
type: 'Create';
}
export interface IUndo extends IActivity {
type: 'Undo';
}
export interface IFollow extends IActivity {
type: 'Follow';
}