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,