Upgrade TypeScript to v5.4.5

This commit is contained in:
Alex Gleason
2024-04-26 17:36:22 -05:00
parent 4df1fbe29b
commit d7b9cb3e67
3 changed files with 16 additions and 2 deletions

View File

@@ -32,7 +32,16 @@ interface NotificationData {
/** ServiceWorker Notification options with extra fields. */
interface ExtendedNotificationOptions extends NotificationOptions {
actions?: NotificationAction[];
data: NotificationData;
image?: string;
title: string;
timestamp?: EpochTimeStamp;
}
interface NotificationAction {
action: string;
icon?: string;
title: string;
}