From 89fb727f614822db0b38c2dc76577937fc293a1d Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 1 Jun 2021 19:17:17 +0900 Subject: [PATCH] Update type.ts --- src/remote/activitypub/type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote/activitypub/type.ts b/src/remote/activitypub/type.ts index 98025da90..372847068 100644 --- a/src/remote/activitypub/type.ts +++ b/src/remote/activitypub/type.ts @@ -3,7 +3,7 @@ export type ApObject = IObject | string | (IObject | string)[]; export interface IObject { '@context': string | obj | obj[]; - type: string | unknown[]; + type: string | string[]; id?: string; summary?: string; published?: string;