mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-06 03:36:03 +02:00
* resolver type / fix updateFeatured * type ApObject * fix strange type * AP Activity * Collection Activityが失敗したらとりあえず無視
8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import { IObject } from './type';
|
|
import { IRemoteUser } from '../../models/entities/user';
|
|
import { performActivity } from './kernel';
|
|
|
|
export default async (actor: IRemoteUser, activity: IObject): Promise<void> => {
|
|
await performActivity(actor, activity);
|
|
};
|