[jquery.notify] fix: JQueryNotifyInstance interface should not extend JQuery

This commit is contained in:
Sergei Dorogin 2017-06-22 18:42:08 +03:00
parent d5a6f0456b
commit 4d99ff50e8

View File

@ -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;