From 5ce61bbd8dbd9e899ae9cf1f048409ddcbacedf1 Mon Sep 17 00:00:00 2001 From: Kristina Fefelova Date: Mon, 2 Dec 2024 18:53:53 +0400 Subject: [PATCH] Fix date type Signed-off-by: Kristina Fefelova --- packages/types/src/notification.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/types/src/notification.ts b/packages/types/src/notification.ts index 427bac36d4..5bfd1c2062 100644 --- a/packages/types/src/notification.ts +++ b/packages/types/src/notification.ts @@ -9,6 +9,6 @@ export interface Notification { export interface NotificationContext { card: CardID - lastViewTimestamp: number - lastUpdateTimestamp: number + lastView: Date + lastUpdate: Date }