From dd297100b7669b3026e3f79f7acea279c708a649 Mon Sep 17 00:00:00 2001 From: Serhii Kulykov Date: Wed, 17 Jun 2020 11:00:29 +0300 Subject: [PATCH] fix: make renderer owner optional [skip ci] (#112) --- @types/interfaces.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@types/interfaces.d.ts b/@types/interfaces.d.ts index c47ddd5..6010fca 100644 --- a/@types/interfaces.d.ts +++ b/@types/interfaces.d.ts @@ -6,5 +6,5 @@ export type NotificationPosition = export type NotificationRenderer = ( root: HTMLElement, - notification: NotificationElement + notification?: NotificationElement ) => void;