From df05ead29106db277a924f3efbbc2fff9a21f475 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Fri, 11 Aug 2023 08:55:00 +0300 Subject: [PATCH] chore: add NotificationItem for Notifications Signed-off-by: Lachezar Lechev --- src/types/models/Ctx.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/types/models/Ctx.d.ts b/src/types/models/Ctx.d.ts index d8a2828c7..fd3cb2766 100644 --- a/src/types/models/Ctx.d.ts +++ b/src/types/models/Ctx.d.ts @@ -45,9 +45,15 @@ type Profile = { type Notifications = { uid: string, created: string, - items: Record, + items: Record, }; +type NotificationItem = { + metaId: string, + videoId: string, + videoReleased: string, +} + type Ctx = { profile: Profile, notifications: Notifications,