summaryrefslogtreecommitdiff
path: root/packages/frontend/src/plugin.ts
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-09-08 14:57:53 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-09-08 14:57:53 +0900
commitf3fffce6a981dfb51c1ad17f129bc891523ed265 (patch)
tree1954e4d91f3d42cf8e15ec994551b5fd198dfe5b /packages/frontend/src/plugin.ts
parentUpdate MkSuspense.vue (diff)
downloadmisskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.tar.gz
misskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.tar.bz2
misskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.zip
fix type
Diffstat (limited to 'packages/frontend/src/plugin.ts')
-rw-r--r--packages/frontend/src/plugin.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/plugin.ts b/packages/frontend/src/plugin.ts
index 657197d1b3..e6545bb8e7 100644
--- a/packages/frontend/src/plugin.ts
+++ b/packages/frontend/src/plugin.ts
@@ -205,7 +205,7 @@ type HandlerDef = {
handler: (note: Misskey.entities.Note) => void;
};
note_view_interruptor: {
- handler: (note: Misskey.entities.Note) => Misskey.entities.Note;
+ handler: (note: Misskey.entities.Note) => Misskey.entities.Note | null;
};
note_post_interruptor: {
handler: (note: FIXME) => unknown;