diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-09-08 14:57:53 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-09-08 14:57:53 +0900 |
| commit | f3fffce6a981dfb51c1ad17f129bc891523ed265 (patch) | |
| tree | 1954e4d91f3d42cf8e15ec994551b5fd198dfe5b | |
| parent | Update MkSuspense.vue (diff) | |
| download | misskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.tar.gz misskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.tar.bz2 misskey-f3fffce6a981dfb51c1ad17f129bc891523ed265.zip | |
fix type
| -rw-r--r-- | packages/frontend/src/plugin.ts | 2 |
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; |