From 81dd33abdc63bec37140e85a6bd90bbf4c9e3a03 Mon Sep 17 00:00:00 2001 From: Igor Zynov Date: Tue, 29 Jul 2025 04:53:20 +0400 Subject: [PATCH] fix(endpoints): correct `viewAll` handler type definitions** --- src/endpoints.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/endpoints.ts b/src/endpoints.ts index 63384c0..86a6ab4 100644 --- a/src/endpoints.ts +++ b/src/endpoints.ts @@ -580,9 +580,7 @@ class Endpoints< update: this.createHandler, IView>('notification.notice.update'), count: this.createHandler, ICount>('notification.notice.count'), hideAll: this.createHandler('notification.notice.hide-all'), - viewAll: this.createHandler, IView>( - 'notification.notice.view-all', - ), + viewAll: this.createHandler('notification.notice.view-all'), }, task: { list: this.createHandler, IList>('notification.task.list'),