From e6d9477caeca0d069a9e16a71047f4c7065b6836 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 1 Aug 2023 13:15:20 +0200 Subject: [PATCH] refactor(types): update Ctx notification type --- src/types/models/Ctx.d.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/types/models/Ctx.d.ts b/src/types/models/Ctx.d.ts index 367f83d9b..d8a2828c7 100644 --- a/src/types/models/Ctx.d.ts +++ b/src/types/models/Ctx.d.ts @@ -42,16 +42,10 @@ type Profile = { settings: Settings, }; -type VideoNotification = { - meta_id: string, - video_id: string, - video: Video, -}; - type Notifications = { uid: string, created: string, - items: Record, + items: Record, }; type Ctx = {