From 4d99ff50e81867012c8aec4604189901d9f55d0f Mon Sep 17 00:00:00 2001 From: Sergei Dorogin Date: Thu, 22 Jun 2017 18:42:08 +0300 Subject: [PATCH] [jquery.notify] fix: JQueryNotifyInstance interface should not extend JQuery --- types/jquery.notify/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jquery.notify/index.d.ts b/types/jquery.notify/index.d.ts index 30e99d265d..9dcf3e5d49 100644 --- a/types/jquery.notify/index.d.ts +++ b/types/jquery.notify/index.d.ts @@ -21,7 +21,7 @@ interface JQuery { notify(method: string, template: number, params?: object, opts?: JQueryNotifyOptions): JQueryNotifyInstance; notify(method: string, params?: object, opts?: JQueryNotifyOptions): JQueryNotifyInstance; } -interface JQueryNotifyInstance extends JQuery { +interface JQueryNotifyInstance { element: JQuery; isOpen: boolean; options: JQueryNotifyOptions;