From e636815d28093c44321774a52f0446422cb5dafc Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Tue, 26 Aug 2025 18:09:18 -0600 Subject: [PATCH] fix(types): add node-mac-notifier ambient module and update import for macOS notifications --- src/integrations/notifications/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/integrations/notifications/index.ts b/src/integrations/notifications/index.ts index 7ade049d73..4d37e89ec0 100644 --- a/src/integrations/notifications/index.ts +++ b/src/integrations/notifications/index.ts @@ -2,7 +2,7 @@ import { execa } from "execa" import { platform } from "os" import * as vscode from "vscode" import * as path from "path" -import { Notification } from "node-mac-notifier" +import Notification from "node-mac-notifier" interface NotificationOptions { title?: string @@ -23,8 +23,7 @@ async function showMacOSNotification(options: NotificationOptions): Promise