From 21b0be8c966a8716f4ac6ce6fb3257b3d9ec222d Mon Sep 17 00:00:00 2001 From: Benjamin Turner Date: Tue, 12 Nov 2024 11:08:43 -0800 Subject: [PATCH] chore: updated notify types to match from IBrowserSyncOptions --- packages/browser-sync-client/lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/browser-sync-client/lib/types.ts b/packages/browser-sync-client/lib/types.ts index a498c070..7f6419a6 100644 --- a/packages/browser-sync-client/lib/types.ts +++ b/packages/browser-sync-client/lib/types.ts @@ -20,7 +20,7 @@ export interface InitOptions { codeSync: boolean; watchEvents: string[]; browser: string; - notify: boolean; + notify: boolean | { styles: {[index: string]: string} | string[]}; open: boolean; reloadDelay: number; minify: boolean;